Joshua Humphries

Results 433 comments of Joshua Humphries

There over ~1400 lines changed, just in the file `proto.y`, between the two versions: https://github.com/bufbuild/protocompile/compare/v0.2.0..v0.14.1#diff-cbe13169fa724e83181b277eea5d1e7c0b7b7647441f3330ddb73abf446f0aee If you are referring to changes between that latest version and the railroad diagram you...

That is an error returned from the codec, when the message is marshaled to bytes. You can handle such errors by providing a custom codec. The custom codec could delegate...

Last year we separately were looking into better foundations for observability, to improve on the shortcomings of [otelconnect](https://github.com/connectrpc/otelconnect-go). So we may be able to address this with that work.

@FGYFFFF, the problem is the way you are importing it, with the "common/" prefix. In general, a file should always be imported using its _canonical_ import path, which in this...

To be clear, the "google/protobuf/descriptor.proto" file that is included in the compile is the one provided by the compiler's configured source resolver. This is tentatively included in every compile so...

Colons are "special" because of the grammar for the URI path: https://github.com/googleapis/googleapis/blob/common-protos-1_3_1/google/api/http.proto#L206-L213 Basically, a colon can separate a field value from a "verb" suffix. The convention is that the verb...

When that flag is true (the default), connection errors will cause the UI to bail immediately and report the error. When it is false, connections will be retried (with exponential...

You can set it to an absurdly large number, like 2000000000 (which is ~63 years), and it will be effectively infinite. Looks like there is currently an overflow risk if...

@mandarjog, I assume you mean the HTML table output for responses? It was removed in #100. There is an existing issue open about adding it back, but in an opt-in...

@akosyakov, is the name of the file `mytest.proto`? If not, please provide that, too. Also, is that the entirety of the input proto source and the buf.gen.yaml? I just want...