Update manage.py

This commit is contained in:
qiaofeng1227 2023-05-15 14:27:50 +08:00 committed by GitHub
parent 3cdd3f5484
commit aafefbb8bc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -545,10 +545,11 @@ def app_domain_delete(app_id, domains):
raise CommandException(const.ERROR_CLIENT_PARAM_NOTEXIST, "APP is not exist", "")
else:
raise CommandException(code, message, "")
old_domains = get_all_domains(app_id)
old_all_domains = get_all_domains(app_id)
for domain in domains:
if domain not in old_domains:
raise CommandException(const.ERROR_CLIENT_PARAM_NOTEXIST, "Domain is not bind", "")
if domain not in old_all_domains:'
myLogger.info_logger("delete domain is not binded")
raise CommandException(const.ERROR_CLIENT_PARAM_NOTEXIST, "Domain is not bind.", "")
proxy = get_proxy_domain(app_id, domain)
if proxy != None: