Skip to content

Commit c97b1ec

Browse files
authored
Fixing the multi langauge worker to get the worker indexed for Logic Apps (#11446)
1 parent 8d58b42 commit c97b1ec

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/WebJobs.Script/Environment/EnvironmentExtensions.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ public static bool IsMultiLanguageRuntimeEnvironment(this IEnvironment environme
488488
{
489489
if (!isMultiLanguageEnabled.HasValue)
490490
{
491-
isMultiLanguageEnabled = environment.IsLogicApp() && !environment.IsLogicAppCodefulModeEnabled();
491+
isMultiLanguageEnabled = environment.IsLogicApp();
492492
}
493493
return isMultiLanguageEnabled.Value;
494494
}

0 commit comments

Comments
 (0)