You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Default `localstack` tag 3.0 was quite outdated,
causing S3 `put_object` operations to fail with recent versions of the
AWS CLI.
Updating to the latest stable tag, 4.5, resolves the issue.
Copy file name to clipboardExpand all lines: src/localstack/mod.rs
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -5,12 +5,12 @@ use testcontainers::{core::WaitFor, Image};
5
5
pubmod pro;
6
6
7
7
constNAME:&str = "localstack/localstack";
8
-
constTAG:&str = "3.0";
8
+
constTAG:&str = "4.5";
9
9
constDEFAULT_WAIT:u64 = 3000;
10
10
11
11
/// This module provides [LocalStack](https://www.localstack.cloud/) (Community Edition).
12
12
///
13
-
/// Currently pinned to [version `3.0`](https://hub.docker.com/layers/localstack/localstack/3.0/images/sha256-73698e485240939490134aadd7e429ac87ff068cd5ad09f5de8ccb76727c13e1?context=explore)
13
+
/// Currently pinned to [version `4.5`](https://hub.docker.com/layers/localstack/localstack/4.5/images/sha256-acc5bf76bd8542897e6326c82f737a980791b998e4d641bcd1560902938ac305?context=explore)
/// This module provides [LocalStack](https://www.localstack.cloud/) (Pro Edition).
8
8
///
9
-
/// Currently pinned to [version `3.0`](https://hub.docker.com/layers/localstack/localstack-pro/3.0/images/sha256-4d9167a049a705b0edafb9e0a6e362aaf5f9d890cebb894dd9113b17eed83153?context=explore)
9
+
/// Currently pinned to [version `4.5`](https://hub.docker.com/layers/localstack/localstack/4.5/images/sha256-acc5bf76bd8542897e6326c82f737a980791b998e4d641bcd1560902938ac305?context=explore)
0 commit comments