Alexey Genus
Alexey Genus
I've got same error with basic auth. Most certainly you forgot to add `Access-Controll-*` headers in response.
I can confirm, it basically works with some minor issues.
I believe, there is no need to proceed with PR any further as protovalidate project should cover validation cases in a much abstract way. I'm talking about this one: https://github.com/bufbuild/protovalidate...
@ElTav I use the following hack in my case: ```sql select direct.*, nested.id nested_id, nested.column1 nested_column1, nested.column2 nested_column2 from direct join nested on direct.id = nested.id where nested.column1 = :nestedColumn1Value...
Looks like so, but beware enabling `recvmmsg` it can cause issues.
What do you think about calling the configured property _timeout_ instead of _deadline_? I believe the current name create some confusion. Deadline in context of GRPC has special meaning and...
> Will there be confusion because we set timeout in the configuration, but in fact we set deadline? I don't think so as you don't set it as-is, but convert...
>OK. For example grpc.client.GLOBAL.timeout=1s ? right? Exactly 👍