proxies: handle origin destruction

This commit is contained in:
Iain Learmonth 2022-04-19 14:51:56 +01:00
parent 7747461e60
commit 21a5d41e8c
2 changed files with 6 additions and 1 deletions

View file

@ -25,7 +25,7 @@ def mirror_sites():
"url": a.url
} for a in x.proxies if
a.url is not None and not a.deprecated and not a.destroyed and a.provider == "cloudfront"
]} for x in Origin.query.order_by(Origin.domain_name).all()
]} for x in Origin.query.order_by(Origin.domain_name).all() if x.destroyed is None
]
}