Skip to content

Commit 418ff80

Browse files
authored
test(server): retarget Firestore emulator image after GCR tag removal (#42182)
## Description Google deleted the pinned Testcontainers image `gcr.io/google.com/cloudsdktool/cloud-sdk:316.0.0-emulators` (404 / manifest unknown). That crashes `FirestorePluginTest` during container start and fails a server unit-test shard on every PR. Pin the published replacement `gcr.io/google.com/cloudsdktool/google-cloud-cli:582.0.0-emulators`. Testcontainers 1.20.1 already accepts this image name. Verified locally: `FirestorePluginTest` — Tests run: 35, Failures: 0, Errors: 0. Fixes https://linear.app/appsmith/issue/APP-15872 ## Testing - [ ] Client unit tests - [x] Server unit tests - [ ] Cypress - [ ] Playwright - [ ] Deploy preview - [ ] Not applicable Suggested Cypress tags or specs: Test-only image pin; no runtime behavior change. Cypress skipped. ## Communication Should the DevRel and Marketing teams inform users about this change? - [ ] Yes - [x] No
1 parent 75847cf commit 418ff80

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/server/appsmith-plugins/firestorePlugin/src/test/java/com/external/plugins/FirestorePluginTest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,7 @@ public class FirestorePluginTest {
8888

8989
@Container
9090
public static final FirestoreEmulatorContainer emulator = new FirestoreEmulatorContainer(
91-
DockerImageName.parse("gcr.io/google.com/cloudsdktool/cloud-sdk:316.0.0-emulators"));
91+
DockerImageName.parse("gcr.io/google.com/cloudsdktool/google-cloud-cli:582.0.0-emulators"));
9292

9393
static Firestore firestoreConnection;
9494

0 commit comments

Comments
 (0)