Skip to content

Commit 8b927a9

Browse files
authored
Skip external config validation if RuntimeDrivenScaling is enabled in Elastic Premium (#7085)
1 parent 9ebee33 commit 8b927a9

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

release_notes.md

+1
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
- Updated [System.Data.SqlClient to 4.8.2](https://www.nuget.org/packages/System.Data.SqlClient/4.8.2)
1212
- Added direct refereces to [System.IO.Pipes](https://www.nuget.org/packages/System.IO.Pipes/4.3.0) and [System.Threading.Overlapped](https://www.nuget.org/packages/System.Threading.Overlapped/4.3.0) to ensure System.Data.SqlClient package update does not impact unification
1313
- Updated Java Worker Version to [1.8.2-SNAPSHOT](https://github.com/Azure/azure-functions-java-worker/releases/tag/1.8.2-SNAPSHOT)
14+
- Skip external config validation if RuntimeDrivenScaling is enabled in Elastic Premium sku (#6542)
1415

1516
**Release sprint:** Sprint 89, 90, 91
1617
[ [bugs](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+89%22+label%3Abug+is%3Aclosed) | [features](https://github.com/Azure/azure-functions-host/issues?q=is%3Aissue+milestone%3A%22Functions+Sprint+89%22+label%3Afeature+is%3Aclosed) ]

src/WebJobs.Script/ScriptHostBuilderExtensions.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ public static IHostBuilder AddScriptHostCore(this IHostBuilder builder, ScriptAp
159159
// Including Core Tools as a warning during development time.
160160
if (environment.IsWindowsConsumption() ||
161161
environment.IsLinuxConsumption() ||
162-
environment.IsWindowsElasticPremium() ||
162+
(environment.IsWindowsElasticPremium() && !environment.IsRuntimeScaleMonitoringEnabled()) ||
163163
environment.IsCoreTools())
164164
{
165165
var validator = s.GetService<ExternalConfigurationStartupValidator>();

0 commit comments

Comments
 (0)