Skip to content

Commit 8e7e1aa

Browse files
committed
feat: increase default timeout value in TmqConfig to 60 seconds
1 parent 7a18cf0 commit 8e7e1aa

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

nodejs/src/tmq/config.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export class TmqConfig {
1313
topics?: Array<string>;
1414
auto_commit: boolean = true;
1515
auto_commit_interval_ms: number = 5 * 1000;
16-
timeout: number = 5000;
16+
timeout: number = 60000;
1717
otherConfigs: Map<string, any>;
1818

1919
constructor(wsConfig: Map<string, any>) {

0 commit comments

Comments
 (0)