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
I had an issue while integrating a custom header containing a comma , caused by RequestAccessorV2.EventToRequestWithContext: the request returned has the custom header value as an array of two strings (original value split into two parts) instead of an array of a single element (the entire value with the comma).
Looking at the code, it seems that the RequestAccessor splits headers values treating them as they all are comma-separated.
I had an issue while integrating a custom header containing a comma
,
caused byRequestAccessorV2.EventToRequestWithContext
: the request returned has the custom header value as an array of two strings (original value split into two parts) instead of an array of a single element (the entire value with the comma).Looking at the code, it seems that the
RequestAccessor
splits headers values treating them as they all are comma-separated.Why so? If an header is not defined as comma-separated no splitting strategy should occur, shouldn't it? What am I missing?
Moreover, why this behavior differs from the
RequestAccessor
(V1)?The text was updated successfully, but these errors were encountered: