Skip to content

Commit

Permalink
disable calling timeout by default
Browse files Browse the repository at this point in the history
* Disabling calling timeout got supported by "pubsub-to-rpc-api" since v8.0.0 by setting "timeoutMs = 0".
  • Loading branch information
vladimiry committed Sep 9, 2022
1 parent aa27b02 commit 9d1fe3b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/private/model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export const MODULE_NAME = "electron-rpc-api";

export const ONE_SECOND_MS = 1000;

export const BASE_TIMEOUT_MS = ONE_SECOND_MS * 3;
export const BASE_TIMEOUT_MS = 0;

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

Expand Down

0 comments on commit 9d1fe3b

Please sign in to comment.