Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
peterdudfield committed Jan 14, 2025
1 parent 013331c commit 5a722cf
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,8 @@ def wrapper(*args, **kwargs): # noqa
)
break
if attempt >= QUERY_WAIT_SECONDS:
# if response is not in cache after 10 seconds, re-run
logger.debug("response not cached after 10 seconds, re-running")
# if response is not in cache after QUERY_WAIT_SECONDS seconds, re-run
logger.debug(f"response not cached after {QUERY_WAIT_SECONDS} seconds, re-running")

# run the route
currently_running[route_variables] = True
Expand Down

0 comments on commit 5a722cf

Please sign in to comment.