Skip to content

Commit 38bc94f

Browse files
Grim issue
1 parent f427ae0 commit 38bc94f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

MessagingService.IntegrationTests/Common/DockerHelper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -212,15 +212,15 @@ public static IContainerService SetupMessagingServiceContainer(String containerN
212212
String hostFolder,
213213
(String URL, String UserName, String Password)? dockerCredentials,
214214
String securityServiceContainerName,
215-
String eventStoreContainerName,
215+
String eventStoreAddress,
216216
(String clientId, String clientSecret) clientDetails,
217217
Boolean forceLatestImage = false,
218218
Int32 securityServicePort = DockerHelper.SecurityServiceDockerPort)
219219
{
220220
logger.LogInformation("About to Start Messaging Service Container");
221221

222222
List<String> environmentVariables = new List<String>();
223-
environmentVariables.Add($"EventStoreSettings:ConnectionString=https://{eventStoreContainerName}:{DockerHelper.EventStoreHttpDockerPort}");
223+
environmentVariables.Add($"EventStoreSettings:ConnectionString=http://{eventStoreAddress}:{DockerHelper.EventStoreHttpDockerPort}");
224224
environmentVariables.Add($"AppSettings:SecurityService=http://{securityServiceContainerName}:{securityServicePort}");
225225
environmentVariables.Add($"SecurityConfiguration:Authority=http://{securityServiceContainerName}:{securityServicePort}");
226226
environmentVariables.Add($"urls=http://*:{DockerHelper.MessagingServiceDockerPort}");

0 commit comments

Comments
 (0)