Skip to content

Commit 782eed4

Browse files
authored
fix(ci, signer-aws): increase recursion limit to fix error: queries overflow the depth limit! (#3633)
* increase recursion limit per error: queries overflow the depth limit! | = help: consider increasing the recursion limit by adding a `#![recursion_limit = "256"]` attribute to your crate (`alloy_signer_aws`) = note: query depth increased by 130 when computing layout of `{async block@crates/signer-aws/src/signer.rs:120:5: 120:23}` * add note
1 parent 64c4dc1 commit 782eed4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

crates/signer-aws/src/lib.rs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,9 @@
55
)]
66
#![cfg_attr(not(test), warn(unused_crate_dependencies))]
77
#![cfg_attr(docsrs, feature(doc_cfg))]
8+
// Increases the default recursion limit of 128 due to the deep type nesting
9+
// of the AWS SDK combined with async-trait and tracing instrumentation.
10+
#![recursion_limit = "256"]
811

912
#[macro_use]
1013
extern crate tracing;

0 commit comments

Comments
 (0)