Daniel Gräfe

Results 93 comments of Daniel Gräfe

FYI, you can use my fork, which is both compatible with PHP 8 and Laravel 8: https://github.com/Timing-GmbH/laravel-apidoc-generator. The fix itself for compatibility with PHP 8 can be found at https://github.com/Timing-GmbH/laravel-apidoc-generator/commit/0979fbba8b6487e9c5f51d1a19a85b0db1938f29.

I guess this would apply to encoding response payloads as well. In my experience, however, protobuf decoding and encoding takes very little time (

👍 Let's keep this open as a feature request for post-1.0. For 1.0 a goal is specifically to have such a small API surface to allow additions like this without...

> @glbrntt The main reason I was asking was because I was trying to use grpcurl with a SwiftGRPC service and not getting much joy. I presume that grpcurl can...

> @MrMage yes I did. That at least worked for the `list` and `describe` `grpcurl` features. I never got `grpcurl` to work calling a method however. My SwiftGRPC based service...

We _could_ just encode the original service protobuf message as passed to the compiler into the generated code, then use that to "power" the reflection API at runtime. That would...

Would this be about simply adding `, :modular_headers => true` to all the dependency lines in the gRPC Podspec? If so, what would be the negative/positive side-effects of that? And...

Adding context from https://github.com/grpc/grpc-swift/pull/459#discussion_r282356734: > When adding that, we should also make sure that all promises (status and response) are being fulfilled (probably with an error) when the timeout occurs....

When you instantiate a `Metadata` object manually, it sets `ownsFields` to true, causing a call to `cgrpc_metadata_array_unref_fields` upon deinit. _In theory_, this should dereference (and thus deallocate) the slices that...

To be honest, I don't really have time to look into this right now, anyway. The easiest way to check whether it is your code could be to just instantiate...