fix(list/rdr): ignore mirrors for which there is no url available
This commit is contained in:
parent
9bde0feed6
commit
96f81ecfb4
1 changed files with 1 additions and 0 deletions
|
@ -23,6 +23,7 @@ def redirector_pool_origins(pool: Pool) -> Dict[str, str]:
|
|||
active_proxies = Proxy.query.filter(
|
||||
Proxy.deprecated.is_(None),
|
||||
Proxy.destroyed.is_(None),
|
||||
Proxy.url.is_not(None),
|
||||
Proxy.pool_id == pool.id
|
||||
)
|
||||
for proxy in active_proxies:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue