Skip to content

Commit a392025

Browse files
authored
Adjust default "no RPC response" timeout to 60s (#4746)
1 parent fbeb478 commit a392025

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ Changes:
1010

1111
- Fix `entriesPaged` where no `at?: BlockHash` is specified
1212
- Apply windcard matches for `democracy::vote::Vote` and `identity::type::Data`
13+
- Adjust default "no RPC response" timeout to 60s
1314

1415

1516
## 8.0.2 Apr 11, 2022

packages/rpc-provider/src/ws/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ const ALIASES: { [index: string]: string } = {
4242

4343
const RETRY_DELAY = 2_500;
4444

45-
const TIMEOUT_S = 30;
45+
const TIMEOUT_S = 60;
4646
const TIMEOUT_MS = TIMEOUT_S * 1000;
4747
const TIMEOUT_INTERVAL = 5_000;
4848

0 commit comments

Comments
 (0)