Merge branch 'Increasing-the-timeout' of https://github.com/Baccount/onionshare into Baccount-Increasing-the-timeout

This commit is contained in:
Micah Lee 2018-01-13 13:46:51 -08:00
commit 5e98a9c283
No known key found for this signature in database
GPG Key ID: 403C2657CD994F73

View File

@ -254,8 +254,8 @@ class Onion(object):
break
time.sleep(0.2)
# Timeout after 45 seconds
if time.time() - start_ts > 45:
# Timeout after 90 seconds
if time.time() - start_ts > 90:
print("")
self.tor_proc.terminate()
raise BundledTorTimeout(strings._('settings_error_bundled_tor_timeout'))