Kevin Chen

Results 24 comments of Kevin Chen

I've created a minimal reproduction of this issue here if anyone wants a simple fork. https://github.com/kevinmichaelchen/hasura-8522

@xaviergmail > I managed to solve this by reopening VSCode in a local folder on Windows and enabling it, then switching back to WSL. I'm a Windows noob. How did...

Is there a way to dynamically retrieve the cluster's endpoint / hostname?

Apologies if this has been reported elsewhere... I see a lot of value around polymorphic bulk mutations with conditionally present batch insert inputs... I wrote more about this problem [**here**](https://gist.github.com/kevinmichaelchen/6952db8ec370257dad58879bceb3a749).

The example I have in mind is to diagram a race condition. The varying speeds could be helpful in emphasizing which part of the race condition typically wins. On Thu,...

The `AddUser` endpoint is working ``` http -v localhost:8080/users.v1.UserService/AddUser email="[email protected]" ``` But not the `ListUsers` endpoint: ``` # fails http -v POST localhost:8080/users.v1.UserService/ListUsers "Content-Type":application/json Accept:"application/json, */*;q=0.5" # succeeds curl localhost:8080/api/v1/users...

I just discovered [InsertDistributedTraceHeaders](https://pkg.go.dev/github.com/newrelic/go-agent/v3/newrelic#Transaction.InsertDistributedTraceHeaders) and [AcceptDistributedTraceHeaders](https://pkg.go.dev/github.com/newrelic/go-agent/v3/newrelic#Transaction.AcceptDistributedTraceHeaders). Should be possible to write some Gin middleware that parses B3 headers and "passes them in" as W3C headers: ```go // NewB3Handler creates a...

Hey @niko-fp — thanks for approving. I am not sure I have permissions to merge this

I'm also running into this... Seems like a dupe of #116... Some helpful info there, but haven't found a way past this yet... > My user has workspace admin, which...