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 #152 in AAP/plexus-interop-github-staging from AAP…
Browse files Browse the repository at this point in the history
…/plexus-interop:master to db-contrib/develop

* commit '82dfb8d8d1f08e3c806a368fd3dbb7a181fb0c20':
  AAP-19502 Web Plexus: [launch_on_call = ALWAYS] option is not respected on call - replace quotes
  • Loading branch information
MaxWellHays committed Nov 18, 2020
2 parents 17f50aa + 82dfb8d commit 7bfbcc8
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 7bfbcc8

Please sign in to comment.