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
It is hard to calculate how many time we will wait for each loop when they are based on counting retries
Loops like:
for trying in range(1, 101): [...] logging.error("Failed to get namespace for %s on the %s cluster after 100 retries" % (cluster_name, type))
Can be moved to:
wait_time = 30 # (minutes) starting_time = datetime.datetime.utcnow().timestamp() while datetime.datetime.utcnow().timestamp() < starting_time + wait_time * 60: [...] logging.error("Waiting time expired. After %d minutes there are %d ready nodes (Expected: %d) on cluster %s" % (wait_time, ready_nodes, worker_nodes, cluster_name))
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It is hard to calculate how many time we will wait for each loop when they are based on counting retries
Loops like:
Can be moved to:
The text was updated successfully, but these errors were encountered: