Skip to content
Open
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
3 changes: 2 additions & 1 deletion cognite/extractorutils/unstable/core/runtime.py
Original file line number Diff line number Diff line change
Expand Up @@ -334,7 +334,8 @@ def _safe_get_application_config(
except Exception as e:
error_message = str(e)
if error_message == prev_error:
# Same error as before, no need to log it again
# Log the error again to make sure it is not missed
self.logger.error(f"{error_message}")
self._cancellation_token.wait(randint(1, self.RETRY_CONFIG_INTERVAL))
continue
self.logger.error(error_message)
Expand Down
Loading