forked from googleapis/google-auth-library-java
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: Populate HttpHeaders fields with List<String> instead of String.
IdentityPoolCredentials#getSubjectTokenFromMetadataServer calls HttpHeaders.putAll to set request headers. The latter sets its fields through reflective access: well-known headers such as Content-Type or Authentication have dedicated fields of type List<String>, while remaining headers go into a Map<String, Object> grab bag. However, we attempt to set every header to a String, which causes a crash for well-known headers. See bazelbuild/bazel#15639 for where this issue was first noticed.
- Loading branch information
Showing
2 changed files
with
8 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters