Skip to content

Commit

Permalink
refactor: stop splitting header values in RequestHeaderContainer (#1590)
Browse files Browse the repository at this point in the history
* refactor: stop splitting header values in RequestHeaderContainer

* chore: revert change for v4
  • Loading branch information
Johannes-Schneider authored Nov 7, 2023
1 parent e5944a2 commit a36af6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ These values can be accessed as follows:
```java
RequestHeaderContainer headers = RequestHeaderAccessor.getHeaderContainer();
headers.getHeaderValues("authorization"); // will return ["Bearer DUMMY_JWT"]
headers.getHeaderValues("set-cookie"); // will return ["cookie-1", "cookie-2"]
headers.getHeaderValues("set-cookie"); // will return ["cookie-1; cookie-2"]
headers.getHeaderValues("accept-language"); // will return ["en-US"]
headers.getHeaderValues("x-app-specific-header"); // will return ["customer-value"]
```
Expand Down

0 comments on commit a36af6e

Please sign in to comment.