Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
yojagad committed Jul 14, 2021
1 parent 91ce2b2 commit 191c5a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/WebJobs.Script/StorageProvider/AzureStorageProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ public AzureStorageProvider(IScriptHostManager scriptHostManager, IConfiguration
{
_ = scriptHostManager ?? throw new ArgumentNullException(nameof(scriptHostManager));
_configuration = new ConfigurationBuilder()
.AddConfiguration(configuration)
.Add(new ActiveHostConfigurationSource(scriptHostManager))
.AddConfiguration(configuration)
.Build();
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ public void TestAzureStorageProvider_JobHostConfigurationWinsConflict(string con

var azureStorageProvider = GetAzureStorageProvider(webHostConfiguration, jobHostConfiguration);
Assert.True(azureStorageProvider.TryGetBlobServiceClientFromConnection(out BlobServiceClient client, "Storage1"));
Assert.Equal("jobHostAccount", client.AccountName, ignoreCase: true);
Assert.Equal("webHostAccount", client.AccountName, ignoreCase: true);
}

[Fact]
Expand Down

0 comments on commit 191c5a0

Please sign in to comment.