I start the client on windows with: python.exe Scripts\drqueue --verbose --no-ssh slave
i see the message "Waiting for SSH tunnel to start up . . ."
So:
|
# wait until port 27017 of MongoDB is available |
|
mongodb_available = False |
|
while mongodb_available == False: |
|
mongodb_available = is_port_open("127.0.0.1", 27017) |
|
time.sleep(2) |
|
print("Waiting for SSH tunnel to start up . . . ") |
is running?!?
I start the client on windows with: python.exe Scripts\drqueue --verbose --no-ssh slave
i see the message "Waiting for SSH tunnel to start up . . ."
So:
DrQueueIPython/bin/drqueue
Lines 1015 to 1020 in 3b08a0a