You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If the message header also specifies the same keys (ex: content-type), when it sends the request to the function might be broken because of the duplicate key.
I would like to know, is it possible to check the message header first, and if it doesn't contain the same key, we use the default value here?
The text was updated successfully, but these errors were encountered:
@chenjr0719http.Header is of type map[string][]string. It can have a slice of values for every key. The Add method does not overwrite existing values, it appends new values to the slice associated with the key.
Hi there, I found an issue in kafka-http-connector.
keda-connectors/kafka-http-connector/main.go
Lines 215 to 226 in da09425
If the message header also specifies the same keys (ex: content-type), when it sends the request to the function might be broken because of the duplicate key.
I would like to know, is it possible to check the message header first, and if it doesn't contain the same key, we use the default value here?
The text was updated successfully, but these errors were encountered: