Zen Nguyen
Zen Nguyen
tried setting grpc.max_send_message_length grpc.max_receive_message_length from https://www.npmjs.com/package/@grpc/grpc-js ..as gathered from https://github.com/dapr/js-sdk/issues/70 still no success.. any recommendation?
`dapr run --app-id ingress-app --app-port 8080 --dapr-grpc-port 3500 --dapr-http-max-request-size 20 -- node bin/cli.js` (there is no equivalent --dapr-hrpc-max-request-size?) `const client = new DaprClient(settings.daprHost, settings.daprPort, CommunicationProtocolEnum.GRPC, {'grpc.max_send_message_length': 1024 * 1024 *...
https://github.com/dapr/go-sdk/blob/main/examples/service/custom-grpc-client/main.go#L43 i saw in go-sdk they recommend manually setting up grpc conns https://github.com/dapr/go-sdk/pull/197
hi @shubham1172 no unfortunately.. just tried again to make sure. I ran both sender and receiver in http mode like this `dapr run --app-id ingress-app --app-port 8080 --dapr-http-port 3500 --dapr-http-max-request-size...
zip attached [sample.zip](https://github.com/dapr/js-sdk/files/9186336/sample.zip) tried sending to "go" app; same behavior
yeah accepting custom http servers/grpc conns seem to be simplest