run test on phase 24 and 33

This commit is contained in:
voltsrage
2026-06-24 04:35:15 +08:00
parent 68c397350b
commit 279add1e45
45 changed files with 732 additions and 99 deletions
@@ -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();