diff --git a/src/frontend/app/store/actions/service-instances.actions.ts b/src/frontend/app/store/actions/service-instances.actions.ts index e9ef6b072b..7f660372f2 100644 --- a/src/frontend/app/store/actions/service-instances.actions.ts +++ b/src/frontend/app/store/actions/service-instances.actions.ts @@ -82,7 +82,7 @@ export class DeleteServiceInstance extends CFStartAction implements ICFAction { constructor(public endpointGuid: string, public guid: string) { super(); this.options = new RequestOptions(); - this.options.url = `service_instances/${guid}`; + this.options.url = `service_instances/${guid}?accepts_incomplete=true`; this.options.method = 'delete'; this.options.params = new URLSearchParams(); this.options.params.set('async', 'false'); @@ -136,7 +136,7 @@ export class UpdateServiceInstance extends CreateServiceInstance { ) { super(endpointGuid, guid, name, servicePlanGuid, spaceGuid, params, tags); this.options.method = 'put'; - this.options.url = `${this.options.url}/${this.guid}`; + this.options.url = `service_instances/${this.guid}?accepts_incomplete=true`; this.actions = getActions('Service Instances', 'Update Service Instance'); } updatingKey = UpdateServiceInstance.updateServiceInstance;