Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

http (fix): Fix a bug in HttpMultiMap.add() when more than 3 values are added with the same key #3761

Merged
merged 1 commit into from
Dec 17, 2024

Conversation

takezoe
Copy link
Member

@takezoe takezoe commented Dec 17, 2024

val m = HttpMultiMap.empty
  .add("key", "value1")
  .add("key", "value2")
  .add("key", "value3")

println(m.getAll("key")) // Vector(List(value1, value2), v, a, l, u, e, 3)

@github-actions github-actions bot added the bug label Dec 17, 2024
@takezoe takezoe requested a review from xerial December 17, 2024 03:38
@xerial xerial merged commit 0fc097f into wvlet:main Dec 17, 2024
17 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants