Skip to content

Commit 0c38dff

Browse files
yojagadpgombar
authored andcommitted
Initial commit.
1 parent fb186a3 commit 0c38dff

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/WebJobs.Script/StorageProvider/AzureStorageProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,8 @@ public AzureStorageProvider(IScriptHostManager scriptHostManager, IConfiguration
3939
{
4040
_ = scriptHostManager ?? throw new ArgumentNullException(nameof(scriptHostManager));
4141
_configuration = new ConfigurationBuilder()
42-
.AddConfiguration(configuration)
4342
.Add(new ActiveHostConfigurationSource(scriptHostManager))
43+
.AddConfiguration(configuration)
4444
.Build();
4545
}
4646
}

test/WebJobs.Script.Tests.Integration/Storage/AzureStorageProviderTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@ public void TestAzureStorageProvider_JobHostConfigurationWinsConflict(string con
107107

108108
var azureStorageProvider = GetAzureStorageProvider(webHostConfiguration, jobHostConfiguration);
109109
Assert.True(azureStorageProvider.TryGetBlobServiceClientFromConnection(out BlobServiceClient client, "Storage1"));
110-
Assert.Equal("jobHostAccount", client.AccountName, ignoreCase: true);
110+
Assert.Equal("webHostAccount", client.AccountName, ignoreCase: true);
111111
}
112112

113113
[Fact]

0 commit comments

Comments
 (0)