Daniel Azuma

Results 103 comments of Daniel Azuma

I don't have much experience with the GRPC library for Elixir. (Are you using https://github.com/elixir-grpc/grpc for GRPC?) I suggest asking in the GRPC library's issues.

These clients aren't doing any formatting or conversion on the returned data. It just passes through whatever the API returns (in its JSON) which in this case appears to be...

The Elixir libraries delegate to the [Goth](https://github.com/peburrows/goth) library for credential handling. Goth understands default account credentials (including those in the App Engine flexible environment) and will fetch them by default....

It's likely that the difference is the use of the gRPC pubsub endpoints vs HTTP/REST pubsub endpoints. Some of the more common languages have high-performance handwritten pubsub clients targeting gRPC,...

As far as I can tell, there isn't a way to set custom headers (such as etags) per call. That shouldn't be too difficult to add, but it does require...

Have not been able to reproduce this. It's possible a change to Tesla (I am using 1.4.0), or a change to the backend behavior, has fixed this in the meantime....

Yes, we probably should. Poison has been causing a lot of headache.

We'd love to do gRPC APIs as well, but we'll probably need to write a separate generator for them, since the input format (proto vs discovery) is completely different. There's...

**Regarding `current_version`** You can't access methods of your tool from an accept function because it is called while command line arguments are being parsed, and the tool hasn't been constructed...

I agree, this is a bit awkward. The challenge, though, is that the scope of a template is _lexical_ (that is, they generate code), whereas the scope of a getter...