Skip to content

Commit

Permalink
try eu-central-1
Browse files Browse the repository at this point in the history
  • Loading branch information
eaypek-tfh committed Jan 12, 2025
1 parent 396356f commit 61b97f0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion deploy/stage/common-values-iris-mpc.yaml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
image: "ghcr.io/worldcoin/iris-mpc:103fccb9459f70c73fcb3d2c04bd994545e2b441"
image: "ghcr.io/worldcoin/iris-mpc:ac85e132a1a90279cb9f73fbca548737307d9d56"

environment: stage
replicaCount: 1
Expand Down
6 changes: 5 additions & 1 deletion iris-mpc/src/bin/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -788,7 +788,11 @@ async fn server_main(config: Config) -> eyre::Result<()> {
let s3_config = S3ConfigBuilder::from(&shared_config)
.retry_config(retry_config.clone())
.build();
let db_chunks_s3_config = S3ConfigBuilder::from(&shared_config)
let eu_central_config = aws_config::from_env()
.region(Region::new("eu-central-1"))
.load()
.await;
let db_chunks_s3_config = S3ConfigBuilder::from(&eu_central_config)
.retry_config(retry_config)
.http_client(http_client)
.build();
Expand Down

0 comments on commit 61b97f0

Please sign in to comment.