@teardown/cli 1.2.24 → 1.2.26
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -24,7 +24,7 @@ class WebSocketRouter {
|
|
|
24
24
|
constructor(fastify) {
|
|
25
25
|
this.fastify = fastify;
|
|
26
26
|
this.fastify.server.on("upgrade", (request, socket, head) => {
|
|
27
|
-
|
|
27
|
+
console.log("WebSocketRouter upgrade", request.url);
|
|
28
28
|
const { pathname } = new URL(request.url || "", "http://localhost");
|
|
29
29
|
let matched = false;
|
|
30
30
|
for (const server of this.servers) {
|