run test on phase 24 and 33
This commit is contained in:
@@ -45,14 +45,7 @@ public class OutboxRelayService : BackgroundService
|
||||
RetryBackoffMs = 100
|
||||
}).Build();
|
||||
|
||||
var factory = new ConnectionFactory
|
||||
{
|
||||
HostName = _rabbitOpts.Host,
|
||||
Port = _rabbitOpts.Port,
|
||||
UserName = _rabbitOpts.Username,
|
||||
Password = _rabbitOpts.Password,
|
||||
DispatchConsumersAsync = true,
|
||||
};
|
||||
var factory = RabbitMqConnectionFactory.Create(_rabbitOpts);
|
||||
_rabbitConnection = factory.CreateConnection("outbox-relay");
|
||||
_rabbitChannel = _rabbitConnection.CreateModel();
|
||||
_rabbitProps = _rabbitChannel.CreateBasicProperties();
|
||||
|
||||
Reference in New Issue
Block a user