George Barnett

Results 221 comments of George Barnett

Can you provide a little more context @IgorRosocha; are you using Network.framework here? And do you have more info about the errors other than just the `unavailable` status, the status...

To clarify: _gRPC will never retry RPCs on behalf of the user_. It will, however, attempt to re-establish the connection which RPCs use if it goes away. With that in...

@jcgonlop is this related to backgrounding the app? If not, can you file a new issue and provide the relevant details.

Not out-of-the-box. However, [swift-nio-extras](https://github.com/apple/swift-nio-extras) includes a [SOCKS](https://github.com/apple/swift-nio-extras/tree/main/Sources/NIOSOCKS) library which you can use in conjunction with the `debugChannelInitializer`. This would be something like: ```swift import NIOSOCKS // ... channel = ClientConnection.secure(group:...

You need to add a dependency to your Package.swift: ```swift .package(url: "https://github.com/apple/swift-nio-extras.git", from: "1.9.0") ``` and then in the appropriate target where you're using `GRPC` you need to add: ```swift...

Yes, you can depend on gRPC Swift via Cocoapods _but_ -- and this is a big one -- gRPC Swift is about to stop supporting Cocoapods. I believe you can...

For some reason there is no podspec published for NIOSOCKS. We can publish one when we do the next release, however I would **strongly** advise you to **not** use Cocoapods...

> 4. What exactly happens - I make the request, for approximately 1 minute it transfers data (seen in the Xcode Debug Navigation) and then it just stays inactive for...

Thanks for providing that. It looks like this is just from the request logger, can you also include the background activity logger (there are two loggers, one in `CallOptions` and...

Thanks for providing that. Unfortunately I haven't been able to reproduce this locally. Could you let me know the versions of each dependency? (in particular all the SwiftNIO dependencies). Could...