Skip to content

Commit a2e77d8

Browse files
authored
Merge pull request #3444 from IntersectMBO/jpraynaud/fix-warp-huge-backtraces
fix(infra): avoid huge warp backtraces in aggregator and relay logs
2 parents be497f0 + 2b32c48 commit a2e77d8

7 files changed

Lines changed: 7 additions & 3 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

mithril-infra/assets/docker/docker-compose-aggregator-base.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,7 @@ services:
4747
- all
4848
environment:
4949
- RUST_BACKTRACE=1
50+
- RUST_LIB_BACKTRACE=0
5051
- GOOGLE_APPLICATION_CREDENTIALS_JSON=${GOOGLE_APPLICATION_CREDENTIALS_JSON}
5152
- GOOGLE_APPLICATION_CREDENTIALS_GCP_KMS_JSON=${GOOGLE_APPLICATION_CREDENTIALS_GCP_KMS_JSON}
5253
- NETWORK=${NETWORK}

mithril-infra/assets/docker/docker-compose-aggregator-p2p-base-override.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ services:
99
- all
1010
environment:
1111
- RUST_BACKTRACE=1
12+
- RUST_LIB_BACKTRACE=0
1213
- LISTEN_PORT=${AGGREGATOR_RELAY_LISTEN_PORT}
1314
- NETWORK=${NETWORK}
1415
- NETWORK_MAGIC=${NETWORK_MAGIC}

mithril-infra/assets/docker/docker-compose-signer-p2p-base-no-dmq-override.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ services:
1313
- all
1414
environment:
1515
- RUST_BACKTRACE=1
16+
- RUST_LIB_BACKTRACE=0
1617
- LISTEN_PORT=${SIGNER_RELAY_LISTEN_PORT}
1718
- SERVER_PORT=${SIGNER_RELAY_SERVER_PORT}
1819
- NETWORK=${NETWORK}

mithril-infra/assets/infra.version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
0.5.17
1+
0.5.19
22

mithril-test-lab/mithril-end-to-end/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "mithril-end-to-end"
3-
version = "0.5.8"
3+
version = "0.5.9"
44
authors = { workspace = true }
55
edition = { workspace = true }
66
documentation = { workspace = true }

mithril-test-lab/mithril-end-to-end/src/utils/mithril_command.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,7 @@ impl MithrilCommand {
3636
let default_args = default_args.iter().map(|s| s.to_string()).collect();
3737

3838
env_vars.insert("RUST_BACKTRACE".to_string(), "full".to_string());
39+
env_vars.insert("RUST_LIB_BACKTRACE".to_string(), "0".to_string());
3940

4041
Ok(MithrilCommand {
4142
name: name.to_string(),

0 commit comments

Comments
 (0)