From 248abe7e50ff7fd84210f01c01003002ba52ace8 Mon Sep 17 00:00:00 2001 From: Terry Date: Wed, 11 Jun 2025 16:28:44 -0300 Subject: [PATCH] fix: cosmosdb image was expired, updated to latest for mongodb support --- modules/cosmosdb/testcontainers/cosmosdb/mongodb.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/cosmosdb/testcontainers/cosmosdb/mongodb.py b/modules/cosmosdb/testcontainers/cosmosdb/mongodb.py index 82e8c096b..e54f52ff6 100644 --- a/modules/cosmosdb/testcontainers/cosmosdb/mongodb.py +++ b/modules/cosmosdb/testcontainers/cosmosdb/mongodb.py @@ -27,7 +27,7 @@ def __init__( self, mongodb_version: str, image: str = os.getenv( - "AZURE_COSMOS_EMULATOR_IMAGE", "mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:mongodb" + "AZURE_COSMOS_EMULATOR_IMAGE", "mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest" ), **other_kwargs, ):