Skip to content

Commit

Permalink
set allow_context_update to true by default
Browse files Browse the repository at this point in the history
  • Loading branch information
pooja-sap13 committed Sep 6, 2021
1 parent 122891f commit 1b33f1f
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,8 @@ class ServiceBrokerApiController extends FabrikBaseController {
} else{
logger.info(`allow_context_updates != undefined`);
}
return catalog.getServiceFromPlan(planId).allow_context_updates == undefined ? false : catalog.getServiceFromPlan(planId).allow_context_updates;
const allowContextUpdate = catalog.getServiceFromPlan(planId).allow_context_updates;
return allowContextUpdate == undefined ? true : allowContextUpdate;
}
let lastOperationState = {
resourceGroup: CONST.APISERVER.RESOURCE_GROUPS.INTEROPERATOR,
Expand Down

0 comments on commit 1b33f1f

Please sign in to comment.