Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 0 additions & 4 deletions CallbackHandler.IntegrationTests/Common/DockerHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,6 @@ public async Task StartSystem()
logger.Initialise(LogManager.GetLogger(scenarioName), scenarioName);
LogManager.AddHiddenAssembly(typeof(NlogLogger).Assembly);

//DockerServices dockerServices = DockerServices.CallbackHandler | DockerServices.EstateManagement | DockerServices.EventStore |
// DockerServices.FileProcessor | DockerServices.MessagingService | DockerServices.SecurityService | DockerServices.SqlServer |
// DockerServices.TestHost | DockerServices.TransactionProcessor | DockerServices.TransactionProcessorAcl;

DockerServices dockerServices = DockerServices.CallbackHandler | DockerServices.EventStore | DockerServices.SqlServer;

this.TestingContext.DockerHelper = new DockerHelper();
Expand Down
2 changes: 1 addition & 1 deletion CallbackHandler/Controllers/CallbackController.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ public async Task<ActionResult<Result<Guid>>> RecordCallback(Deposit depositCall

CallbackCommands.RecordCallbackRequest request = new CallbackCommands.RecordCallbackRequest(callbackId,
JsonConvert.SerializeObject(depositCallback),
new[] { "EstateManagement" },
new[] { "TransactionProcessor" },
MessageFormat.JSON,
depositCallback.GetType().ToString(),
depositCallback.Reference);
Expand Down
Loading