From 7ded3d30543dbbeb113e3c369cbb8a3e67d758d5 Mon Sep 17 00:00:00 2001 From: Blaine Forbush Date: Fri, 5 Oct 2018 16:38:49 -0600 Subject: [PATCH] Improves fix for #3086 --- src/frontend/app/store/actions/service-instances.actions.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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;