Skip to content
This repository has been archived by the owner on Mar 5, 2024. It is now read-only.

Commit

Permalink
Merge pull request #190 from finos/db-contrib/develop
Browse files Browse the repository at this point in the history
Db contrib/develop
  • Loading branch information
MaxWellHays authored Nov 18, 2020
2 parents ddd39a0 + 7bfbcc8 commit 766be09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/packages/broker/src/broker/InvocationRequestHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -187,7 +187,7 @@ export class InvocationRequestHandler {
const targetMethods = this.registryService.getMatchingProvidedMethods(sourceConnection.applicationId, methodReference);
if (
targetMethods.length === 1 &&
targetMethods[0].options.filter(o => o.id === "interop.ProvidedMethodOptions.launch_on_call" && o.value === "ALWAYS").length > 0
targetMethods[0].options.filter(o => o.id === 'interop.ProvidedMethodOptions.launch_on_call' && o.value === 'ALWAYS').length > 0
) {
const appConnection = await this.appLifeCycleManager.spawnConnection(targetMethods[0].providedService.application.id);
return appConnection;
Expand Down

0 comments on commit 766be09

Please sign in to comment.