Skip to content

Commit

Permalink
Re-connection logic when RPC WebSocket connection goes down
Browse files Browse the repository at this point in the history
  • Loading branch information
froch authored Nov 18, 2021
2 parents 3f00f9e + 18cb4f0 commit a361bc6
Show file tree
Hide file tree
Showing 4 changed files with 384 additions and 72 deletions.
24 changes: 13 additions & 11 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -3,14 +3,15 @@ module github.com/streamingfast/solana-go
go 1.15

require (
contrib.go.opencensus.io/exporter/stackdriver v0.13.4 // indirect
contrib.go.opencensus.io/exporter/stackdriver v0.13.10 // indirect
filippo.io/edwards25519 v1.0.0-rc.1
github.com/GeertJohan/go.rice v1.0.0
github.com/davecgh/go-spew v1.1.1
github.com/fatih/color v1.9.0
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect
github.com/google/go-cmp v0.5.6
github.com/gorilla/rpc v1.2.0
github.com/gorilla/websocket v1.4.2
github.com/jpillora/backoff v1.0.0
github.com/klauspost/compress v1.11.3
github.com/magiconair/properties v1.8.5
github.com/mr-tron/base58 v1.2.0
Expand All @@ -22,17 +23,18 @@ require (
github.com/spf13/pflag v1.0.5
github.com/spf13/viper v1.9.0
github.com/streamingfast/binary v0.0.0-20210928223119-44fc44e4a0b5
github.com/streamingfast/dstore v0.1.1-0.20211028233549-6fa17808533b // indirect
github.com/streamingfast/dstore v0.1.1-0.20211028233549-6fa17808533b
github.com/streamingfast/logging v0.0.0-20210908162127-bdc5856d5341
github.com/stretchr/testify v1.7.0
github.com/teris-io/shortid v0.0.0-20201117134242-e59966efd125 // indirect
github.com/tidwall/gjson v1.6.7
github.com/tidwall/gjson v1.11.0
github.com/ybbus/jsonrpc v2.1.2+incompatible
go.uber.org/atomic v1.7.0
go.uber.org/zap v1.17.0
golang.org/x/crypto v0.0.0-20210817164053-32db794688a5
golang.org/x/oauth2 v0.0.0-20210819190943-2bc19b11175f
golang.org/x/term v0.0.0-20201210144234-2321bbc49cbf // indirect
google.golang.org/api v0.57.0
gotest.tools v2.2.0+incompatible
go.uber.org/atomic v1.9.0
go.uber.org/multierr v1.7.0 // indirect
go.uber.org/zap v1.19.1
golang.org/x/crypto v0.0.0-20211117183948-ae814b36b871
golang.org/x/oauth2 v0.0.0-20211005180243-6b3c2da341f1
golang.org/x/sys v0.0.0-20211117180635-dee7805ff2e1 // indirect
golang.org/x/term v0.0.0-20210927222741-03fcf44c2211 // indirect
google.golang.org/api v0.59.0
)
Loading

0 comments on commit a361bc6

Please sign in to comment.