Skip to content

Commit 9d1fe3b

Browse files
committed
disable calling timeout by default
* Disabling calling timeout got supported by "pubsub-to-rpc-api" since v8.0.0 by setting "timeoutMs = 0".
1 parent aa27b02 commit 9d1fe3b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/private/model.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export const MODULE_NAME = "electron-rpc-api";
1818

1919
export const ONE_SECOND_MS = 1000;
2020

21-
export const BASE_TIMEOUT_MS = ONE_SECOND_MS * 3;
21+
export const BASE_TIMEOUT_MS = 0;
2222

2323
export const EMPTY_FN: Lib.Model.LoggerFn = () => {}; // tslint:disable-line:no-empty
2424

0 commit comments

Comments
 (0)