adding missing reuse to tests (#1262)

Signed-off-by: salaboy <Salaboy@gmail.com>
This commit is contained in:
salaboy 2025-03-17 14:36:52 +00:00 committed by GitHub
parent a03f22064e
commit 19c662cc2d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -69,7 +69,7 @@ public class DaprTestContainersConfig {
return new RabbitMQContainer(DockerImageName.parse("rabbitmq:3.7.25-management-alpine"))
.withExposedPorts(5672)
.withNetworkAliases("rabbitmq")
.withReuse(true)
.withReuse(reuse)
.withNetwork(daprNetwork);
}

View File

@ -80,7 +80,7 @@ public class DaprTestContainersConfig {
return new RabbitMQContainer(DockerImageName.parse("rabbitmq:3.7.25-management-alpine"))
.withExposedPorts(5672)
.withNetworkAliases("rabbitmq")
.withReuse(true)
.withReuse(reuse)
.withNetwork(daprNetwork);
}