Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lean/components/util/auth0_helper.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def get_authorization(auth0_client: Auth0Client, brokerage_id: str, logger: Logg

# keep checking for new data every 5 seconds for 7 minutes
while time() - start_time < 420:
logger.info("Will sleep 5 seconds and retry fetching authorization...")
logger.debug("Will sleep 5 seconds and retry fetching authorization...")
sleep(5)
data = auth0_client.read(brokerage_id)
if data.authorization is None:
Expand Down
Loading