Skip to content

Commit ff7d13c

Browse files
committed
fix(controller) : remove domain
deis domains:remove was removing all domains instead of single one
1 parent 70e00aa commit ff7d13c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

controller/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)