Skip to content

Commit

Permalink
fix: cancelable server closures, server.socket
Browse files Browse the repository at this point in the history
  • Loading branch information
kettanaito committed Sep 30, 2024
1 parent 1b1e0f8 commit 6b8b0a2
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@
"@bundled-es-modules/statuses": "^1.0.1",
"@bundled-es-modules/tough-cookie": "^0.1.6",
"@inquirer/confirm": "^3.0.0",
"@mswjs/interceptors": "^0.35.9",
"@mswjs/interceptors": "^0.36.0",
"@open-draft/deferred-promise": "^2.2.0",
"@open-draft/until": "^2.1.0",
"@types/cookie": "^0.6.0",
Expand Down
8 changes: 4 additions & 4 deletions pnpm-lock.yaml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions src/core/ws/utils/attachWebSocketLogger.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,12 +92,12 @@ export function attachWebSocketLogger(
currentTarget: {
enumerable: true,
writable: false,
value: server['realWebSocket'],
value: server.socket,
},
target: {
enumerable: true,
writable: false,
value: server['realWebSocket'],
value: server.socket,
},
})

Expand Down

0 comments on commit 6b8b0a2

Please sign in to comment.