Skip to content

Commit 7fbd2d9

Browse files
committed
fix: wss path
1 parent 1ce6f2e commit 7fbd2d9

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.husky/pre-commit

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/usr/bin/env bash
1+
#!/usr/bin/env sh
2+
. "$(dirname "$0")/_/husky.sh"
23

3-
# Run lint-staged
4-
npx lint-staged
4+
./node_modules/.bin/lint-staged

indexer/src/kadena-server/server.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -355,7 +355,7 @@ export async function startGraphqlServer() {
355355
// Set up WebSocket server for subscriptions
356356
const wsServer = new WebSocketServer({
357357
server: httpServer,
358-
path: '/wss/graphql',
358+
path: '/graphql',
359359
});
360360

361361
// Track active connections

0 commit comments

Comments
 (0)