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

At the moment the NIO implementation has timeouts on the client but not on the server. We should add timeouts to the server as well.

kind/enhancement
version/v1

See https://github.com/grpc/grpc-swift/blob/master/Tests/SwiftGRPCTests/ClientTestExample.swift and https://github.com/grpc/grpc-swift/blob/master/Tests/SwiftGRPCTests/ServerTestExample.swift. The point of these two files is to illustrate how a library user could use the test stubs optionally generated by our `protoc` plugin to test...

enhancement

## Problem Application keeps crashing randomly. ## Version Using Swift-Grpc v.0.11.0 ``` Thread 21 Crashed: 0 libsystem_kernel.dylib 0x30c541d88 __pthread_kill 1 libsystem_pthread.dylib 0x18c0ef74c 2 libsystem_c.dylib 0x18c03e934 abort 3 grpc 0x1063a3480 gpr_malloc...

bug
cgrpc

### Question Checklist - [x] Updated grpc-swift to the latest version - [x] I read the [Contribution Guidelines](https://github.com/grpc/grpc-swift/blob/master/CONTRIBUTING.md) - [x] I read [README](https://github.com/grpc/grpc-swift/blob/master/README.md) - [x] I searched for [existing GitHub...

cgrpc

https://github.com/grpc/grpc-swift/issues/619 is still reproducible for us. ### New Issue Checklist - [ ] Updated grpc-swift to the latest version - [ ] I read the [Contribution Guidelines](https://github.com/grpc/grpc-swift/blob/master/CONTRIBUTING.md) - [ ]...

cgrpc

### New Issue Checklist - [ ] Updated grpc-swift to the latest version - [ X] I read the [Contribution Guidelines](https://github.com/grpc/grpc-swift/blob/master/CONTRIBUTING.md) - [X ] I searched for [existing GitHub issues](https://github.com/grpc/grpc-swift/issues)(especially,...

version/cgrpc

### New Issue Checklist - [x] Updated grpc-swift to the latest version - [x] I read the [Contribution Guidelines](https://github.com/grpc/grpc-swift/blob/master/CONTRIBUTING.md) - [x] I searched for [existing GitHub issues](https://github.com/grpc/grpc-swift/issues)(especially, there are many...

cgrpc

These two args has been removed since 1.8 and is on by default. Passing in these two args will result in the grpc stub not being generated at all.

- grpc-swift: 1.9.0 - integrated via SPM ### Describe the bug The app crashes when I make a request. ### To reproduce I've written the following code: ``` let group...

kind/bug

## Motivation Sometimes, depending on the characteristics of the traffic, we may need to execute requests in spikes. It's possible that when we get a large spike of requests, a...