Bouke van der Bijl
Bouke van der Bijl
This program is missing channels and goroutines
@Philzen it seems the package on npm is missing Mass somehow, could you upload the current master to npm?
I saw trailers encoded like `b'grpc-status': b'0'` which is happening because strings and bytes were being mixed. Now trailers are always strings and they're encoded in the pack_trailers method
Hi there, the [abort_with_status](https://github.com/public/sonora/blob/4e362e92f988bfb55758b17b274610b2574c1f2e/sonora/asgi.py#L365-L371) method currently looks like it takes a StatusCode value, but [it should set the trailing metadata and call abort instead](https://github.com/grpc/grpc/blob/401c382e8a0cc5c6083d3d5edfc6cd12abeb2658/src/python/grpcio/grpc/_server.py#L365-L367)
Hi there, Currently, if no application default credentials were found, [a RuntimeError](https://github.com/googleapis/google-auth-library-ruby/blob/1c7f3c39d12041c535624aa98dad1d21906835f6/lib/googleauth/application_default.rb#L76) with a constant error message is raised. This should be a custom class instead, so it can be...
It seems this can almost work since [you can specify the network](https://github.com/grafana/dskit/blob/9af49a5b011a71a2bbee9df83e61ef71e750b8d0/server/server.go#L82), the only problem is that it [adds the port to the address](https://github.com/grafana/dskit/blob/9af49a5b011a71a2bbee9df83e61ef71e750b8d0/server/server.go#L260). Perhaps it should only do this...
Hi there! I got this error on my NixPkgs PR: 'This PR does not cleanly list package outputs after merging.' Then I'm brought to a gist which has some sort...
If I use [nixos-rebuild on a remote target](https://www.haskellforall.com/2023/01/announcing-nixos-rebuild-new-deployment.html) with a different architecture as my machine (e.g. from my macOS to a Linux machine) I get an error like: `error: a...
Great job on the project! It works nicely. There’s just one issue I’ve walked into: if you keep using the same location for the data and restart the container after...
Hi there, I've implemented a pure nix yarn.lock parser: https://gist.github.com/bouk/95f565b744168a3a0fcf396c1ebb805e I was thinking this can be used in `js2nix` so it can work without having to generate and commit a...