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
When Http-Headers are give to method invokeMethod of class DaprClient these headers should be sent along with the request.
Actual Behavior
It seems that the metadata is ignored when sending request. In AbstractClient line 115see. There the given matadata is ignored. In DaprClientHttp line 211see there are added additional headers to the request, but they come from the HttpExtension object.
Steps to Reproduce the Problem
invoke a service over http while giving a Map<String,String> to the metadata parameter
the invoked service won't get these Headers
The text was updated successfully, but these errors were encountered:
Expected Behavior
When Http-Headers are give to method
invokeMethod
of classDaprClient
these headers should be sent along with the request.Actual Behavior
It seems that the metadata is ignored when sending request. In
AbstractClient
line115
see. There the given matadata is ignored. InDaprClientHttp
line211
see there are added additional headers to the request, but they come from theHttpExtension
object.Steps to Reproduce the Problem
Map<String,String>
to the metadata parameterThe text was updated successfully, but these errors were encountered: