We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 19ba742 commit 3d42f9bCopy full SHA for 3d42f9b
1 file changed
src/Testcontainers.ServiceBus/ServiceBusContainer.cs
@@ -20,7 +20,7 @@ public ServiceBusContainer(ServiceBusConfiguration configuration)
20
public string GetConnectionString()
21
{
22
var properties = new Dictionary<string, string>();
23
- properties.Add("Endpoint", new UriBuilder("amqp", Hostname, GetMappedPublicPort(ServiceBusBuilder.ServiceBusPort)).ToString());
+ properties.Add("Endpoint", new UriBuilder("sb", Hostname, GetMappedPublicPort(ServiceBusBuilder.ServiceBusPort)).ToString());
24
properties.Add("SharedAccessKeyName", "RootManageSharedAccessKey");
25
properties.Add("SharedAccessKey", "SAS_KEY_VALUE");
26
properties.Add("UseDevelopmentEmulator", "true");
0 commit comments