-
Notifications
You must be signed in to change notification settings - Fork 469
Enabling worker indexing for Logic apps behind an enviornment setting #11377
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: in-proc
Are you sure you want to change the base?
Changes from 1 commit
504c0cd
0b7ff55
f774703
71710d6
1b9924e
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||
---|---|---|---|---|---|---|
|
@@ -787,7 +787,7 @@ internal async Task<Collection<FunctionDescriptor>> GetFunctionDescriptorsAsync( | |||||
Collection<FunctionDescriptor> functionDescriptors = new Collection<FunctionDescriptor>(); | ||||||
if (!cancellationToken.IsCancellationRequested) | ||||||
{ | ||||||
bool throwOnWorkerRuntimeAndPayloadMetadataMismatch = true; | ||||||
bool throwOnWorkerRuntimeAndPayloadMetadataMismatch = _environment.IsLogicApp() && _environment.IsLogicAppCodefulModeEnabled() ? false: true; | ||||||
|
bool throwOnWorkerRuntimeAndPayloadMetadataMismatch = _environment.IsLogicApp() && _environment.IsLogicAppCodefulModeEnabled() ? false: true; | |
bool throwOnWorkerRuntimeAndPayloadMetadataMismatch = !(_environment.IsLogicApp() && _environment.IsLogicAppCodefulModeEnabled()); |
Copilot uses AI. Check for mistakes.
Uh oh!
There was an error while loading. Please reload this page.