Edward McFarlane
Edward McFarlane
I think you can use the gs bucket URL directly: `gs://{projectID}.appspot.com`. If you need to run the emulators locally you will have to set the environement: ```go os.Setenv("FIREBASE_STORAGE_EMULATOR_HOST", "localhost:9199") os.Setenv("STORAGE_EMULATOR_HOST",...
Filed a bug here: https://github.com/firebase/firebase-tools/issues/5129
Was looking for examples too and thought this might help: ``` histogram_quantile(0.9, sum(rate(grpc_io_server_server_latency_bucket{kubernetes_name=~"$app"}[2m])) by (grpc_server_method, le)) ```
What's the correct way to get the hash of a golang module dependency?
Lamina dependency on levas dependency on radix-ui is causing some conflicts. Would be great to have it conditionally!
👋 hello! Maybe my project could help with gRPC file uploads: https://github.com/emcfarlane/larking
👋 hello, I've solved this in my gRPC-transcoding project https://github.com/emcfarlane/larking by letting the handler access the underlying reader/writer stream. The API is: ```go func AsHTTPBodyReader(stream grpc.ServerStream, msg proto.Message) (io.Reader, error)...
This looks like a bug in encoding `content/type`. For example if we look at findPetsByStatus list response: - v3: https://petstore3.swagger.io/#/pet/findPetsByStatus ```json "/pet/findByStatus": { "get": { "summary": "Finds Pets by status",...
Similar for parameters too, would be a nice to combine them to make the surface model generate the same code for both V2 and V3. v3: ``` types: { name:...
[`FIELD_SAME_ONEOF`](https://buf.build/docs/breaking/rules#field_same_oneof) will trigger when the same tag is moved out (or in) of the oneof. So: ```diff oneof statusInfo { Booked booked = 100; - Booked booked_2 = 101; }...