We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5c8921 commit 5dee276Copy full SHA for 5dee276
src/planet_auth/oidc/request_authenticator.py
@@ -124,6 +124,9 @@ def _refresh_if_needed(self):
124
msg="Error refreshing auth token. Continuing with old auth token. Refresh error: " + str(e)
125
)
126
127
+ # FIXME?
128
+ # Why is this breaking the SDK CICD? Why only for the pipeline and not a local nox?
129
+ # The pipeline should be using a legacy API key, so why is this even being called?
130
if not (self._credential and self._credential.is_loaded()):
131
# "refresh" may also be called to initialize in some cases, as in client credentials flow.
132
# Continuing with what we have is not an option when we have nothing.
0 commit comments