Reduced timeout for major exceptions
This commit is contained in:
parent
372f80bf38
commit
163f64dda7
1 changed files with 3 additions and 3 deletions
|
|
@ -305,13 +305,13 @@ def major_exception():
|
||||||
except GenericAbort:
|
except GenericAbort:
|
||||||
# User declined upload
|
# User declined upload
|
||||||
print_warning('Upload: Aborted')
|
print_warning('Upload: Aborted')
|
||||||
sleep(30)
|
sleep(10)
|
||||||
except GenericError:
|
except GenericError:
|
||||||
# No log file or uploading disabled
|
# No log file or uploading disabled
|
||||||
sleep(30)
|
sleep(10)
|
||||||
except:
|
except:
|
||||||
print_error('Upload: NS')
|
print_error('Upload: NS')
|
||||||
sleep(30)
|
sleep(10)
|
||||||
else:
|
else:
|
||||||
print_success('Upload: CS')
|
print_success('Upload: CS')
|
||||||
pause('Press Enter to exit...')
|
pause('Press Enter to exit...')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue