fix sleep() call

This commit is contained in:
sqlcoder 2009-08-01 00:06:07 +01:00
parent 0756345f3e
commit e9873d38a5

View File

@ -27,7 +27,7 @@ Create and manage the database objects.
import sys import sys
import traceback import traceback
from datetime import datetime, date, time, timedelta from datetime import datetime, date, time, timedelta
from time import time, strftime from time import time, strftime, sleep
import string import string
import re import re
import logging import logging
@ -1607,7 +1607,7 @@ class Database:
tries = tries + 1 tries = tries + 1
if tries < maxTries and wait < 5: # wait < 5 just to make sure if tries < maxTries and wait < 5: # wait < 5 just to make sure
print "deadlock detected - trying again ..." print "deadlock detected - trying again ..."
time.sleep(wait) sleep(wait)
wait = wait + wait wait = wait + wait
again = True again = True
else: else: