We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eac263c commit f0648d6Copy full SHA for f0648d6
singlestoredb/server/docker.py
@@ -136,10 +136,7 @@ def __init__(
136
137
# Setup license value
138
if license is None:
139
- try:
140
- license = os.environ['SINGLESTORE_LICENSE']
141
- except KeyError:
142
- raise ValueError('a SingleStore license must be supplied')
+ license = os.environ.get('SINGLESTORE_LICENSE', None)
143
144
# Setup environment variables for the container
145
env = {'ROOT_PASSWORD': self.password}
0 commit comments