From 20d2e32719dfada74b8dd54de5710edb027ccc11 Mon Sep 17 00:00:00 2001 From: Eduard Tomas Date: Wed, 22 Mar 2017 14:40:00 +0100 Subject: [PATCH] Ups... too many parens xD --- .../EventBus/EventBusRabbitMQ/EventBusRabbitMQ.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.cs b/src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.cs index b850c4eef..3388875ab 100644 --- a/src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.cs +++ b/src/BuildingBlocks/EventBus/EventBusRabbitMQ/EventBusRabbitMQ.cs @@ -117,7 +117,7 @@ namespace Microsoft.eShopOnContainers.BuildingBlocks.EventBusRabbitMQ } else { - ((_model, _connection) = CreateConnection(); + (_model, _connection) = CreateConnection(); return _model; } }