Skip to content

Commit dafcbed

Browse files
authored
fix(modules): fix cosmosdb failure (#827)
The mongodb image was expired, [looks like it's support is now included on latest](Azure/azure-cosmos-db-emulator-docker#112) so aligning it with the other DBs types under cosmosdb
1 parent 5f34ad0 commit dafcbed

File tree

1 file changed

+1
-1
lines changed
  • modules/cosmosdb/testcontainers/cosmosdb

1 file changed

+1
-1
lines changed

modules/cosmosdb/testcontainers/cosmosdb/mongodb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ def __init__(
2727
self,
2828
mongodb_version: str,
2929
image: str = os.getenv(
30-
"AZURE_COSMOS_EMULATOR_IMAGE", "mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:mongodb"
30+
"AZURE_COSMOS_EMULATOR_IMAGE", "mcr.microsoft.com/cosmosdb/linux/azure-cosmos-emulator:latest"
3131
),
3232
**other_kwargs,
3333
):

0 commit comments

Comments
 (0)