Beispiel #1
0
        private async Task RegisterOperation(TransferEvent operation)
        {
            var response = await _transferEventsRepositoryClient.RegisterAsync(operation);

            if (response.Id != operation.Id)
            {
                _log.Warning($"Unexpected response from Operations Service: {response.ToJson()}",
                             context: operation.ToJson());
            }

            ChaosKitty.Meow();
        }