Skip to content

Commit

Permalink
fix(debug-server-next): change heartbeatInterval to 300s (#29)
Browse files Browse the repository at this point in the history
  • Loading branch information
Cyunong authored Nov 28, 2024
1 parent d5c3534 commit a7d24e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/debug-server-next/src/socket-server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ import { onVueClientConnection } from '@debug-server-next/controller/vue-devtool
import { onReactClientConnection } from '@debug-server-next/controller/react-devtools';
import { onVanillaJSClientConnection } from '@debug-server-next/controller/vanilla-js-devtools';

const heartbeatInterval = 30000;
const heartbeatInterval = 300000;

const log = new Logger('socket-server', WinstonColor.Cyan);

Expand Down

0 comments on commit a7d24e7

Please sign in to comment.