Johann Pardanaud
10/21/2024, 5:06 PMcall.response.header("foo", "bar")
call.response.header("foo", "baz")
This code returns a response with header foo: bar
instead of foo: baz
.Chris Lee
10/21/2024, 5:41 PMcurl -v
or somesuch, as lots of clients/libraries only pull out one of the headers).
Its not really possible to “remove” a response header as it may already have been sent on the network.Johann Pardanaud
10/21/2024, 5:46 PMappend
method is not suspending. However, you’re right, the header is just probably sent multiple times.