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:
parent
93a77fd80c
commit
3145b4007a
1 changed files with 2 additions and 1 deletions
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue