1
0
Fork 0
mirror of https://github.com/portainer/portainer.git synced 2025-08-05 22:05:23 +02:00

ignoring error on deletion

This commit is contained in:
Felix Han 2021-09-06 01:10:30 +12:00
parent 93a77fd80c
commit 3145b4007a

View file

@ -102,7 +102,8 @@ class KubernetesServiceService {
const namespace = service.Namespace;
await this.KubernetesServices(namespace).delete(params).$promise;
} catch (err) {
throw new PortainerError('Unable to remove service', err);
// ignoring error on deletion
// throw new PortainerError('Unable to remove service', err);
}
}