Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ public ServiceBusEmulatorContainer(final DockerImageName dockerImageName) {
super(dockerImageName);
dockerImageName.assertCompatibleWith(DEFAULT_IMAGE_NAME);
withExposedPorts(DEFAULT_PORT);
withEnv("SQL_WAIT_INTERVAL", "0");
waitingFor(Wait.forLogMessage(".*Emulator Service is Successfully Up!.*", 1));
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ public class ServiceBusEmulatorContainerTest {
@Rule
// emulatorContainer {
public ServiceBusEmulatorContainer emulator = new ServiceBusEmulatorContainer(
"mcr.microsoft.com/azure-messaging/servicebus-emulator:1.0.1"
"mcr.microsoft.com/azure-messaging/servicebus-emulator:1.1.2"
)
.acceptLicense()
.withConfig(MountableFile.forClasspathResource("/service-bus-config.json"))
Expand Down
Loading