From 195e3ad334ca96e147c624c15166b5d0aa15a391 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 29 Apr 2024 05:49:34 +0000 Subject: [PATCH 1/2] chore(deps): bump crate-ci/typos from 1.20.9 to 1.20.10 Bumps [crate-ci/typos](https://github.com/crate-ci/typos) from 1.20.9 to 1.20.10. - [Release notes](https://github.com/crate-ci/typos/releases) - [Changelog](https://github.com/crate-ci/typos/blob/master/CHANGELOG.md) - [Commits](https://github.com/crate-ci/typos/compare/v1.20.9...v1.20.10) --- updated-dependencies: - dependency-name: crate-ci/typos dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- .github/workflows/pull_request.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pull_request.yml b/.github/workflows/pull_request.yml index 10c7780be..d98013744 100644 --- a/.github/workflows/pull_request.yml +++ b/.github/workflows/pull_request.yml @@ -112,7 +112,7 @@ jobs: steps: - uses: actions/checkout@v4 - name: Check Spelling - uses: crate-ci/typos@v1.20.9 + uses: crate-ci/typos@v1.20.10 build: name: Build From 6efe9472e0fdfb680d324acfe3fcec923a01796a Mon Sep 17 00:00:00 2001 From: GFX9 Date: Fri, 19 Apr 2024 22:07:33 +0800 Subject: [PATCH 2/2] fix: Change rpc timeout to prevent the warn of ae failed Signed-off-by: GFX9 --- crates/utils/src/config.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/utils/src/config.rs b/crates/utils/src/config.rs index c98af4e74..dcf7e547d 100644 --- a/crates/utils/src/config.rs +++ b/crates/utils/src/config.rs @@ -407,7 +407,7 @@ pub const fn default_fixed_backoff() -> bool { #[must_use] #[inline] pub const fn default_rpc_timeout() -> Duration { - Duration::from_millis(50) + Duration::from_millis(150) } /// default candidate timeout ticks