Fix token overwritten by empty access_token field (fixes #801) #856
+1
−1
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.

Fixes #801
Problem
When a registry returns both
"token"and"access_token"fields in the authentication response, the current logic unconditionally overwrites thetoken value with access_token, even when access_token is empty.
This causes authentication failures with registries like Harbor that return:
{"token": "eyJ...", "access_token": "", "expires_in": 1800, "issued_at": "..."}The second
ifstatement overwrites the valid JWT token with an empty string, leading to "could not find token" errors.Solution
Changed the condition from:
To:
This only uses
access_tokenwhen it's non-empty, fixing authentication for registries that return both fields with an emptyaccess_token.Tested