We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see ourdocumentation.
There was an error while loading.Please reload this page.
1 parent43abf8e commite87d61aCopy full SHA for e87d61a
.github/workflows/ci.yml
@@ -9,7 +9,7 @@ jobs:
9
runs-on:ubuntu-latest
10
steps:
11
-uses:actions/checkout@v4
12
- -uses:actions/setup-go@v4
+ -uses:actions/setup-go@v5
13
with:
14
go-version-file:./go.mod
15
-run:./ci/fmt.sh
@@ -19,7 +19,7 @@ jobs:
19
20
21
-run:go version
22
23
24
25
-run:./ci/lint.sh
@@ -28,7 +28,7 @@ jobs:
28
29
30
31
32
33
34
-run:./ci/test.sh
@@ -41,7 +41,7 @@ jobs:
41
42
43
44
45
46
47
-run:./ci/bench.sh
.github/workflows/daily.yml
@@ -12,15 +12,15 @@ jobs:
16
17
18
-run:AUTOBAHN=1 ./ci/bench.sh
test:
26
-run:AUTOBAHN=1 ./ci/test.sh
@@ -34,7 +34,7 @@ jobs:
35
36
ref:dev
37
38
39
40
@@ -44,7 +44,7 @@ jobs:
48
49
50
close.go
@@ -131,7 +131,7 @@ func (c *Conn) Close(code StatusCode, reason string) (err error) {
131
// CloseNow closes the WebSocket connection without attempting a close handshake.
132
// Use when you do not want the overhead of the close handshake.
133
func (c*Conn)CloseNow() (errerror) {
134
-defererrd.Wrap(&err,"failed to close WebSocket")
+defererrd.Wrap(&err,"failed toimmediatelyclose WebSocket")
135
136
if!c.casClosing() {
137
err=c.waitGoroutines()
conn_test.go
@@ -346,7 +346,7 @@ func TestConn(t *testing.T) {
346
funcTestWasm(t*testing.T) {
347
t.Parallel()
348
ifos.Getenv("CI")=="" {
349
-t.Skip()
+t.SkipNow()
350
}
351
352
s:=httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter,r*http.Request) {