Vladislav Polyakov
Vladislav Polyakov
> Thanks for the PR. If you can update it to only make the change to not set the header if the user already provided one, we can merge it....
> Currently, we're always setting the `User-Agent` header, regardless of whether the user has already provided one. For example: The problem is: 1. Passing headers would require changing the code...
@timostamm
@timostamm Greetings! Will you be able to watch it?
> via `ClientError.code` property. This is a bit inconvenient, you need to write a lot of code when you could just read it in onTrailer. Do you think we can...
Without ```ts #debug: ClientMiddleware = async function* (this: Connection, call, options) { try { if (!call.responseStream) { const response = yield* call.next(call.request, options); return response; } else { for await...
> and are not exposed in gRPC metadata. Some gRPC implementations expose grpc-*
https://github.com/connectrpc/connect-es https://www.npmjs.com/package/@connectrpc/connect
Posible solution ```ts async function testWithRace() { // Create a slow generator similar to the previous test const slowGenerator = () => ({ [Symbol.asyncIterator]() { let yielded = false; console.log('Generator...
> Can you please provide a more detailed description of your use case? Collect queries count, quries duration. monitoring performance clickhouse library itself, expose tracings https://opentelemetry.io. > Do you maybe...