Skip to content

Commit 5b68e41

Browse files
committed
chore(test-suite): upgrade anvil/connector
1 parent a83df42 commit 5b68e41

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

kms-connector/crates/gw-listener/tests/health.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use std::{net::SocketAddr, str::FromStr, time::Duration};
1515
use tokio_util::sync::CancellationToken;
1616

1717
#[rstest]
18-
#[timeout(Duration::from_secs(240))]
18+
#[timeout(Duration::from_secs(300))]
1919
#[tokio::test]
2020
async fn test_healthcheck_endpoints() -> anyhow::Result<()> {
2121
let mut test_instance = TestInstanceBuilder::db_gw_setup().await?;

kms-connector/crates/kms-worker/tests/health.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ use std::{net::SocketAddr, str::FromStr, time::Duration};
1515
use tokio_util::sync::CancellationToken;
1616

1717
#[rstest]
18-
#[timeout(Duration::from_secs(240))]
18+
#[timeout(Duration::from_secs(300))]
1919
#[tokio::test]
2020
async fn test_healthcheck_endpoints() -> anyhow::Result<()> {
2121
let mut test_instance = TestInstanceBuilder::full().await?;

kms-connector/crates/tx-sender/tests/health.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ use tokio_util::sync::CancellationToken;
1212
use tx_sender::monitoring::health::{HealthStatus, State};
1313

1414
#[rstest]
15-
#[timeout(Duration::from_secs(240))]
15+
#[timeout(Duration::from_secs(300))]
1616
#[tokio::test]
1717
async fn test_healthcheck_endpoint() -> anyhow::Result<()> {
1818
let mut test_instance = TestInstanceBuilder::db_gw_setup().await?;

test-suite/fhevm/docker-compose/gateway-docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
gateway-node:
33
container_name: fhevm-gateway-node
4-
image: ghcr.io/foundry-rs/foundry:v1.2.3
4+
image: ghcr.io/foundry-rs/foundry:v1.3.5
55
env_file:
66
- ../env/staging/.env.gateway.local
77
entrypoint:
@@ -66,4 +66,4 @@ services:
6666
- addresses-volume:/app/addresses
6767

6868
volumes:
69-
addresses-volume:
69+
addresses-volume:

test-suite/fhevm/docker-compose/host-docker-compose.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
services:
22
host-node:
33
container_name: fhevm-host-node
4-
image: ghcr.io/foundry-rs/foundry:v1.2.3
4+
image: ghcr.io/foundry-rs/foundry:v1.3.5
55
env_file:
66
- ../env/staging/.env.host.local
77
entrypoint:

test-suite/fhevm/fhevm-cli

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,9 +16,9 @@ PROJECT="fhevm"
1616

1717
# Default versions for the fhevm stack
1818
export CONNECTOR_DB_MIGRATION_VERSION=${CONNECTOR_DB_MIGRATION_VERSION:-"v0.8.0"}
19-
export CONNECTOR_GW_LISTENER_VERSION=${CONNECTOR_GW_LISTENER_VERSION:-"v0.8.0"}
20-
export CONNECTOR_KMS_WORKER_VERSION=${CONNECTOR_KMS_WORKER_VERSION:-"v0.8.0"}
21-
export CONNECTOR_TX_SENDER_VERSION=${CONNECTOR_TX_SENDER_VERSION:-"v0.8.0"}
19+
export CONNECTOR_GW_LISTENER_VERSION=${CONNECTOR_GW_LISTENER_VERSION:-"a83df42"}
20+
export CONNECTOR_KMS_WORKER_VERSION=${CONNECTOR_KMS_WORKER_VERSION:-"a83df42"}
21+
export CONNECTOR_TX_SENDER_VERSION=${CONNECTOR_TX_SENDER_VERSION:-"a83df42"}
2222
export DB_MIGRATION_VERSION=${DB_MIGRATION_VERSION:-"v0.8.0"}
2323
export GATEWAY_VERSION=${GATEWAY_VERSION:-"v0.8.0"}
2424
export HOST_VERSION=${HOST_VERSION:-"v0.8.0"}

0 commit comments

Comments
 (0)