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 64cf446 commit e175153Copy full SHA for e175153
singlestoredb/management/manager.py
@@ -351,12 +351,10 @@ def _wait_on_endpoint(
351
with out.connect(connect_timeout=5):
352
pass
353
except Exception as exc:
354
+ # If we get an 'access denied' error, that means that the server is
355
+ # up and we just aren't authenticating.
356
if isinstance(exc, OperationalError) and exc.errno == 1045:
- print('CONNECTED')
357
break
- print('STILL WAITING')
358
- import traceback
359
- traceback.print_exc()
360
# If connection fails, check timeout and retry
361
if timeout <= 0:
362
raise ManagementError(
0 commit comments