Describe the bug
We are just JSON stringifying the args and if it include map, it will be replaced with {} empty object, we need to first convert the map into a regular object and then stringify it.
Please provide the steps to reproduce and if possible a minimal demo of the problem.
Use HTTP Plugin with map args through a wrapper where the call fails and observe the logs.
The problem seems to originate from here:
|
args: JSON.stringify(jsArgs, null, 2), |
Describe the bug
We are just JSON stringifying the args and if it include map, it will be replaced with
{}empty object, we need to first convert the map into a regular object and then stringify it.Please provide the steps to reproduce and if possible a minimal demo of the problem.
Use HTTP Plugin with map args through a wrapper where the call fails and observe the logs.
The problem seems to originate from here:
javascript-client/packages/plugin/src/PluginWrapper.ts
Line 109 in 59f8314