Skip to content

Commit d25caed

Browse files
committed
Renames secret credentials
1 parent 88936c7 commit d25caed

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/ServiceBusRelayHost.Demo.Screen/Program.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ class Program
6969
{
7070
static void Main(string[] args)
7171
{
72-
var config = new HttpServiceBusConfiguration(SecretCredentials.ServiceBusCredentials.ServiceBusAddress)
72+
var config = new HttpServiceBusConfiguration(SecretCredentials.ServiceBusAddress)
7373
{
7474
IssuerName = "owner",
75-
IssuerSecret = SecretCredentials.ServiceBusCredentials.Secret
75+
IssuerSecret = SecretCredentials.Secret
7676
};
7777
config.Routes.MapHttpRoute("default", "{controller}/{id}", new { id = RouteParameter.Optional });
7878
var server = new HttpServiceBusServer(config);

src/ServiceBusRelayHost.Tests/IntegrationTests.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -73,8 +73,8 @@ public Task<HttpResponseMessage> Post()
7373
[TestFixture]
7474
public class IntegrationTests
7575
{
76-
private readonly string BaseAddress = ServiceBusCredentials.ServiceBusAddress;
77-
private readonly string Secret = ServiceBusCredentials.Secret;
76+
private readonly string BaseAddress = SecretCredentials.ServiceBusAddress;
77+
private readonly string Secret = SecretCredentials.Secret;
7878

7979
[Test]
8080
public void When_GET_response_content_is_received()

0 commit comments

Comments
 (0)