Skip to content

Commit

Permalink
fix(nodejs): send heart beats every 10 seconds (apache#677)
Browse files Browse the repository at this point in the history
closes apache#676
  • Loading branch information
fengmk2 authored Jan 28, 2024
1 parent 65b70ed commit 0f38c07
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nodejs/src/client/BaseClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,7 @@ export abstract class BaseClient {
// heartbeat every 10s
this.#timers.push(setInterval(async () => {
this.#doHeartbeat();
}, 5 * 60000));
}, 10000));

// doStats every 60s
// doStats()
Expand Down

0 comments on commit 0f38c07

Please sign in to comment.