We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61e64af commit fdc71e1Copy full SHA for fdc71e1
src/unstructured_client/utils/_human_utils.py
@@ -97,5 +97,5 @@ def log_retries(retry_count, sleep):
97
"""Function for logging retries to give users visibility into requests."""
98
logging.basicConfig(level=logging.INFO, stream=sys.stdout)
99
logging.info(
100
- "Retry attempt %s. Sleeping %s seconds before retry.", retry_count, sleep
+ "Retry attempt %s. Sleeping %s seconds before retry.", retry_count, round(sleep, 1)
101
)
0 commit comments