File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
internal/metrics/synthetics Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -22,6 +22,7 @@ require (
22
22
github.com/cenkalti/backoff/v4 v4.3.0
23
23
github.com/chzyer/readline v1.5.1
24
24
github.com/cli/safeexec v1.0.1
25
+ github.com/coder/websocket v1.8.12
25
26
github.com/depot/depot-go v0.3.0
26
27
github.com/docker/docker v26.1.4+incompatible
27
28
github.com/docker/go-connections v0.5.0
@@ -95,7 +96,6 @@ require (
95
96
google.golang.org/grpc v1.65.0
96
97
gopkg.in/yaml.v2 v2.4.0
97
98
gopkg.in/yaml.v3 v3.0.1
98
- nhooyr.io/websocket v1.8.11
99
99
)
100
100
101
101
require (
Original file line number Diff line number Diff line change @@ -182,6 +182,8 @@ github.com/cloudflare/circl v1.3.7/go.mod h1:sRTcRWXGLrKw6yIGJ+l7amYJFfAXbZG0kBS
182
182
github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f /go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc =
183
183
github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb h1:EDmT6Q9Zs+SbUoc7Ik9EfrFqcylYqgPZ9ANSbTAntnE =
184
184
github.com/codahale/rfc6979 v0.0.0-20141003034818-6a90f24967eb /go.mod h1:ZjrT6AXHbDs86ZSdt/osfBi5qfexBrKUdONk989Wnk4 =
185
+ github.com/coder/websocket v1.8.12 h1:5bUXkEPPIbewrnkU8LTCLVaxi4N4J8ahufH2vlo4NAo =
186
+ github.com/coder/websocket v1.8.12 /go.mod h1:LNVeNrXQZfe5qhS9ALED3uA+l5pPqvwXg3CKoDBB2gs =
185
187
github.com/containerd/cgroups v1.1.0 h1:v8rEWFl6EoqHB+swVNjVoCJE8o3jX7e8nqBGPLaDFBM =
186
188
github.com/containerd/cgroups v1.1.0 /go.mod h1:6ppBcbh/NOOUU+dMKrykgaBnK9lCIBxHqJDGwsa1mIw =
187
189
github.com/containerd/console v1.0.4 h1:F2g4+oChYvBTsASRTz8NP6iIAi97J3TtSAsLbIFn4ro =
@@ -879,5 +881,3 @@ gvisor.dev/gvisor v0.0.0-20230927004350-cbd86285d259 h1:TbRPT0HtzFP3Cno1zZo7yPzE
879
881
gvisor.dev/gvisor v0.0.0-20230927004350-cbd86285d259 /go.mod h1:AVgIgHMwK63XvmAzWG9vLQ41YnVHN0du0tEC46fI7yY =
880
882
honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099 /go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4 =
881
883
honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc /go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4 =
882
- nhooyr.io/websocket v1.8.11 h1:f/qXNc2/3DpoSZkHt1DQu6rj4zGC8JmkkLkWss0MgN0 =
883
- nhooyr.io/websocket v1.8.11 /go.mod h1:rN9OFWIUwuxg4fR5tELlYC04bXYowCP9GX47ivo2l+c =
Original file line number Diff line number Diff line change @@ -8,12 +8,12 @@ import (
8
8
"sync"
9
9
"time"
10
10
11
+ "github.com/coder/websocket"
11
12
"github.com/superfly/flyctl/internal/buildinfo"
12
13
"github.com/superfly/flyctl/internal/config"
13
14
"github.com/superfly/flyctl/internal/logger"
14
15
metrics "github.com/superfly/flyctl/internal/metrics"
15
16
"golang.org/x/time/rate"
16
- "nhooyr.io/websocket"
17
17
)
18
18
19
19
type SyntheticsWs struct {
Original file line number Diff line number Diff line change @@ -13,8 +13,8 @@ import (
13
13
"sync"
14
14
"time"
15
15
16
+ "github.com/coder/websocket"
16
17
"golang.org/x/time/rate"
17
- "nhooyr.io/websocket"
18
18
)
19
19
20
20
func ConnectWS (ctx context.Context , state * WireGuardState ) (* Tunnel , error ) {
You can’t perform that action at this time.
0 commit comments