Skip to content
Snippets Groups Projects
Commit 5e586315 authored by Blake Fitch's avatar Blake Fitch
Browse files

set connection timeout to 6000 secs

parent b1b154bd
No related branches found
No related tags found
No related merge requests found
......@@ -80,7 +80,7 @@ def get_irods_session( host, port, zone, user, password, do_not_block=False, tim
# Trust but verify ... inside the try.
if irods_sesh != None :
# iRODS session time out disabled. We depend on docker or other outside health monitors
irods_sesh.connection_timeout = 0
irods_sesh.connection_timeout = 6000 # 100 minutes
# This is a quick test to see that it is working. Could do this only in DEBUG mode.
coll = irods_sesh.collections.get( "/" + str( irods_sesh.zone ) + "/home/" + str( irods_sesh.username ) )
break; # this is the good exit of the while loop
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment