From d48e30a491ad376f069894762a66a6ed00bf96a6 Mon Sep 17 00:00:00 2001 From: Stuart Ferguson Date: Tue, 29 Nov 2022 13:06:19 +0000 Subject: [PATCH] Small docker fix --- Shared.IntegrationTesting/BaseDockerHelper.cs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Shared.IntegrationTesting/BaseDockerHelper.cs b/Shared.IntegrationTesting/BaseDockerHelper.cs index b98fedec..636df053 100644 --- a/Shared.IntegrationTesting/BaseDockerHelper.cs +++ b/Shared.IntegrationTesting/BaseDockerHelper.cs @@ -177,6 +177,8 @@ public List GetCommonEnvironmentVariables(Int32 securityServicePort) { this.InsecureEventStoreEnvironmentVariable, $"AppSettings:PersistentSubscriptionPollingInSeconds={this.PersistentSubscriptionSettings.pollingInterval}", $"AppSettings:InternalSubscriptionServiceCacheDuration={this.PersistentSubscriptionSettings.cacheDuration}", + $"AppSettings:SubscriptionConfiguration:PersistentSubscriptionPollingInSeconds={this.PersistentSubscriptionSettings.pollingInterval}", + $"AppSettings:SubscriptionConfiguration:InternalSubscriptionServiceCacheDuration={this.PersistentSubscriptionSettings.cacheDuration}", $"AppSettings:SecurityService=https://{this.SecurityServiceContainerName}:{securityServicePort}", $"SecurityConfiguration:Authority=https://{this.SecurityServiceContainerName}:{securityServicePort}", $"AppSettings:ClientId={this.ClientDetails.clientId}",