Skip to content

Commit 181512b

Browse files
committed
another comment update
1 parent cb7b666 commit 181512b

2 files changed

Lines changed: 10 additions & 6 deletions

File tree

endtoendtests/e2e-test-setup.ps1

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@ if ($NoSetup -eq $false) {
2323
docker pull "mcr.microsoft.com/azure-storage/azurite:${AzuriteVersion}"
2424

2525
Write-Host "Starting Azurite storage emulator using default ports..." -ForegroundColor Yellow
26-
# --skipApiVersionCheck: client sends an x-ms-version newer than this pinned Azurite image
27-
# recognizes; without this flag Azurite returns "The API version <date> is not supported by
28-
# Azurite", the task hub fails to initialize, and every /api/* call returns HTTP 500.
26+
# --skipApiVersionCheck: the Durable extension's Azure Storage client can request a
27+
# newer REST API version than the pinned Azurite image supports (e.g. 2026-02-06 vs
28+
# Azurite 3.34.0's max 2025-05-05). Without this flag, Azurite rejects the request
29+
# with "The API version <date> is not supported by Azurite", the extension fails to
30+
# create its task hub, and every /api/* call returns HTTP 500.
2931
docker run --name 'azurite' -p 10000:10000 -p 10001:10001 -p 10002:10002 -d "mcr.microsoft.com/azure-storage/azurite:${AzuriteVersion}" `
3032
azurite -l /workspace -d /workspace/debug.log --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0 --skipApiVersionCheck
3133

samples-azure-functions/e2e-test-setup.ps1

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,9 +23,11 @@ if ($NoSetup -eq $false) {
2323
docker pull "mcr.microsoft.com/azure-storage/azurite:${AzuriteVersion}"
2424

2525
Write-Host "Starting Azurite storage emulator using default ports..." -ForegroundColor Yellow
26-
# --skipApiVersionCheck: client sends an x-ms-version newer than this pinned Azurite image
27-
# recognizes; without this flag Azurite returns "The API version <date> is not supported by
28-
# Azurite", the task hub fails to initialize, and every /api/* call returns HTTP 500.
26+
# --skipApiVersionCheck: the Durable extension's Azure Storage client can request a
27+
# newer REST API version than the pinned Azurite image supports (e.g. 2026-02-06 vs
28+
# Azurite 3.34.0's max 2025-05-05). Without this flag, Azurite rejects the request
29+
# with "The API version <date> is not supported by Azurite", the extension fails to
30+
# create its task hub, and every /api/* call returns HTTP 500.
2931
docker run --name 'azurite' -p 10000:10000 -p 10001:10001 -p 10002:10002 -d "mcr.microsoft.com/azure-storage/azurite:${AzuriteVersion}" `
3032
azurite -l /workspace -d /workspace/debug.log --blobHost 0.0.0.0 --queueHost 0.0.0.0 --tableHost 0.0.0.0 --skipApiVersionCheck
3133

0 commit comments

Comments
 (0)