grpc-swift icon indicating copy to clipboard operation
grpc-swift copied to clipboard

The Swift language implementation of gRPC.

Results 137 grpc-swift issues
Sort by recently updated
recently updated
newest added

### Describe the bug The RPCs start to fail when connectivity changes, e.g. wifi -> cellular, or wifi -> disabled, on/off airplane mode. The later RPCs all fails, only after...

kind/bug

The Swift Protobuf code generator attempts to propagate the comments at the top of `.proto` file. https://github.com/apple/swift-protobuf/blob/94b37224c3db84439f29cf6173f8fc5ea40cda8c/Sources/protoc-gen-swift/FileGenerator.swift#L71-L89 This would be very useful to propagate information such as a correct copyright...

kind/enhancement

### Describe the bug For local use, I'm trying to configure the Swift gRPC client's connection backoff so that it: - Retries quickly with no jitter or exponential backoff -...

kind/enhancement

From [the gRPC docs](https://grpc.io/blog/deadlines/#checking-deadlines): > On the server side, the server can query to see if a particular RPC is no longer wanted. Before a server starts work on a...

kind/support

### What are you trying to achieve? Is it possible to use Swift gRPC with a custom TLS provider? (like openSSL v3?). The objective is to use a custom TLS...

kind/support

### Describe the bug Having a service and messages like these: ``` service MyService { rpc RequestMyData (MyRequest) returns (MyResponse) {} } message MyRequest { } message MyResponse { MyData...

kind/bug

### Describe the bug Got: Missing required module 'CNIOAtomics' Hard: MacBook M1 Soft: latest Xcode version on Ventura, swift version 5.7.1, grpc-swift(1.10.0) in SPM package, SPM package [here](https://github.com/adriantabirta/taxify-networking) ### To...

kind/bug

Help me with this grpc: received message larger than max (9014796 vs. 4194304). -- which property should i use to set the (X * 1024 * 1024) message size.

### What are you trying to achieve? We got an app that contains a GRPC server in C++ and a Swift Client. The Swift client is using grpc-swift 1.23.0 via...

question

Motivation: The natural NIO API to use when dealing with HTTP/2 multiplexing doesn't emit user inbound events when streams are created and closed. Instead this is signalled via the `NIOHTTP2StreamDelegate`....

v2