Skip to content

Commit e37176a

Browse files
authored
Fixing the multi langauge worker to get the worker indexed for Logic Apps. (#11445)
1 parent 8eff985 commit e37176a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/WebJobs.Script/Environment/EnvironmentExtensions.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
// Copyright (c) .NET Foundation. All rights reserved.
1+
// Copyright (c) .NET Foundation. All rights reserved.
22
// Licensed under the MIT License. See License.txt in the project root for license information.
33

44
using System;
@@ -441,7 +441,7 @@ public static bool IsMultiLanguageRuntimeEnvironment(this IEnvironment environme
441441
{
442442
if (!isMultiLanguageEnabled.HasValue)
443443
{
444-
isMultiLanguageEnabled = environment.IsLogicApp() && !environment.IsLogicAppCodefulModeEnabled();
444+
isMultiLanguageEnabled = environment.IsLogicApp();
445445
}
446446
return isMultiLanguageEnabled.Value;
447447
}

0 commit comments

Comments
 (0)