Skip to content

Commit

Permalink
Remove Atom Pub over HTTP as support is deprecated
Browse files Browse the repository at this point in the history
  • Loading branch information
fredimachado committed Nov 25, 2024
1 parent ebd5908 commit 8998861
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,6 +204,5 @@ private static void ConfigureEventStoreContainer(EnvironmentCallbackContext cont
context.EnvironmentVariables.Add("EVENTSTORE_START_STANDARD_PROJECTIONS", "true");
context.EnvironmentVariables.Add("EVENTSTORE_NODE_PORT", $"{EventStoreResource.DefaultHttpPort}");
context.EnvironmentVariables.Add("EVENTSTORE_INSECURE", "true");
context.EnvironmentVariables.Add("EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP", "true");
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -66,11 +66,6 @@ public async Task AddEventStoreContainerWithDefaultsAddsAnnotationMetadata()
{
Assert.Equal("EVENTSTORE_INSECURE", ext.Key);
Assert.Equal("true", ext.Value);
},
ext =>
{
Assert.Equal("EVENTSTORE_ENABLE_ATOM_PUB_OVER_HTTP", ext.Key);
Assert.Equal("true", ext.Value);
});
}

Expand Down

0 comments on commit 8998861

Please sign in to comment.