We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
def main(): start_time = time.time() while time.time() - start_time < 59: time.sleep(1) print(f"{time.time() - start_time}second...")
print("Complete the 59 second loop.")
Q_CLUSTER = { 'name': 'DJRedis', 'workers': 3, 'timeout': 600, 'retry': 600, "ack_failures": True, 'django_redis': 'default' }
I don't understand, isn't this supposed to run continuously, why do you sometimes wait for a minute before executing?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
def main():
start_time = time.time()
while time.time() - start_time < 59:
time.sleep(1)
print(f"{time.time() - start_time}second...")
Q_CLUSTER = {
'name': 'DJRedis',
'workers': 3,
'timeout': 600,
'retry': 600,
"ack_failures": True,
'django_redis': 'default'
}
I don't understand, isn't this supposed to run continuously, why do you sometimes wait for a minute before executing?
The text was updated successfully, but these errors were encountered: