Skip to content

Commit 6f86ad4

Browse files
committed
fix(controller) : remove domain
deis domains:remove was removing all domains instead of single one
1 parent f0f40b9 commit 6f86ad4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

api/models.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ def _etcd_publish_domains(**kwargs):
993993
def _etcd_purge_domains(**kwargs):
994994
domain = kwargs['instance']
995995
try:
996-
_etcd_client.delete('/deis/certs/{}'.format(domain),
996+
_etcd_client.delete('/deis/domains/{}'.format(domain),
997997
prevExist=True, dir=True, recursive=True)
998998
except KeyError:
999999
pass

0 commit comments

Comments
 (0)