Skip to content

Commit f0648d6

Browse files
committed
Remove license requirement
1 parent eac263c commit f0648d6

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

singlestoredb/server/docker.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -136,10 +136,7 @@ def __init__(
136136

137137
# Setup license value
138138
if license is None:
139-
try:
140-
license = os.environ['SINGLESTORE_LICENSE']
141-
except KeyError:
142-
raise ValueError('a SingleStore license must be supplied')
139+
license = os.environ.get('SINGLESTORE_LICENSE', None)
143140

144141
# Setup environment variables for the container
145142
env = {'ROOT_PASSWORD': self.password}

0 commit comments

Comments
 (0)