Stack oneWithLists = stackRepository.findOneWithLists(data.getStackId());
MDCBuilder.buildMdcContext(oneWithLists);
LOGGER.info("Accepted {} event.", ReactorConfig.DELETE_COMPLETE_EVENT);
stackRepository.delete(oneWithLists);
websocketService.sendToTopicUser(oneWithLists.getOwner(), WebsocketEndPoint.TERMINATE,
new StatusMessage(oneWithLists.getId(), oneWithLists.getName(), Status.DELETE_COMPLETED.name(), String.format("Stack delete completed")));
retryingStackUpdater.updateStackStatusReason(oneWithLists.getId(), String.format("Stack delete completed"));
}