feat: test grpc client reconnects

Ensure that we don't receive GOAWAY after 30 minutes of repeated calls to our server
This commit is contained in:
talksik
2025-03-26 14:21:53 -07:00
commit 2e6d931974
6 changed files with 143 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
module github.com/talksik/grpc-client-test
go 1.24.0
require (
google.golang.org/grpc v1.71.0
google.golang.org/protobuf v1.36.6
)
require (
golang.org/x/net v0.34.0 // indirect
golang.org/x/sys v0.29.0 // indirect
golang.org/x/text v0.21.0 // indirect
google.golang.org/genproto/googleapis/rpc v0.0.0-20250115164207-1a7da9e5054f // indirect
)