Skip to content

Commit

Permalink
Skip external config validation if RuntimeDrivenScaling is enabled in…
Browse files Browse the repository at this point in the history
… Elastic Premium (#7085)
  • Loading branch information
soninaren authored Jan 26, 2021
1 parent 9ebee33 commit 8b927a9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions release_notes.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
- Updated [System.Data.SqlClient to 4.8.2](https://www.nuget.org/packages/System.Data.SqlClient/4.8.2)
- 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
- Updated Java Worker Version to [1.8.2-SNAPSHOT](https://github.com/Azure/azure-functions-java-worker/releases/tag/1.8.2-SNAPSHOT)
- Skip external config validation if RuntimeDrivenScaling is enabled in Elastic Premium sku (#6542)

**Release sprint:** Sprint 89, 90, 91
[ [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) ]
2 changes: 1 addition & 1 deletion src/WebJobs.Script/ScriptHostBuilderExtensions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -159,7 +159,7 @@ public static IHostBuilder AddScriptHostCore(this IHostBuilder builder, ScriptAp
// Including Core Tools as a warning during development time.
if (environment.IsWindowsConsumption() ||
environment.IsLinuxConsumption() ||
environment.IsWindowsElasticPremium() ||
(environment.IsWindowsElasticPremium() && !environment.IsRuntimeScaleMonitoringEnabled()) ||
environment.IsCoreTools())
{
var validator = s.GetService<ExternalConfigurationStartupValidator>();
Expand Down

0 comments on commit 8b927a9

Please sign in to comment.