Compare commits

..

No commits in common. "6b4445aa2f3d1ad98f1243ef1a857029124c9c37" and "9aae80cb73de8e3d4f61a77a51feaac6472add57" have entirely different histories.

View File

@ -34,7 +34,7 @@ namespace Api.AMQPReciever
var consumer = new AsyncEventingBasicConsumer(_channel);
consumer.ReceivedAsync += (model, ea) =>
{
Console.WriteLine("\nReceived application message.\n");
Console.WriteLine("Received application message.");
var body = ea.Body.ToArray();
var message = Encoding.UTF8.GetString(body);