From d3cf09893b0dea0a66c00dabea079c154d83238d Mon Sep 17 00:00:00 2001 From: Jonathan Idland Olsnes <73334350+Jonathanio123@users.noreply.github.com> Date: Thu, 29 Aug 2024 14:01:03 +0200 Subject: [PATCH] fix: Fixed invalid format for defaultMessageTimeToLive value (#684) --- infrastructure/arm/environment.template.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/infrastructure/arm/environment.template.json b/infrastructure/arm/environment.template.json index a9eef8b65..8f38d60fc 100644 --- a/infrastructure/arm/environment.template.json +++ b/infrastructure/arm/environment.template.json @@ -196,7 +196,7 @@ "properties": { "maxSizeInMegabytes": 1024, "duplicateDetectionHistoryTimeWindow": "P1D", - "defaultMessageTimeToLive": "P1H", + "defaultMessageTimeToLive": "PT1H", "deadLetteringOnMessageExpiration": true, "maxDeliveryCount": 2 }