mirror of https://github.com/openspug/spug
F 修复验证主机时,前端输入的默认密码不会被用于未验证主机。
parent
7872d8cb85
commit
188b97b139
|
@ -255,7 +255,7 @@ def batch_sync_host(token, hosts, password=None):
|
||||||
max_workers = max(10, os.cpu_count() * 5)
|
max_workers = max(10, os.cpu_count() * 5)
|
||||||
with futures.ThreadPoolExecutor(max_workers=max_workers) as executor:
|
with futures.ThreadPoolExecutor(max_workers=max_workers) as executor:
|
||||||
for host in hosts:
|
for host in hosts:
|
||||||
if hasattr(host, 'password'):
|
if getattr(host, 'password'):
|
||||||
password = host.password
|
password = host.password
|
||||||
t = executor.submit(_sync_host_extend, host, private_key, public_key, password)
|
t = executor.submit(_sync_host_extend, host, private_key, public_key, password)
|
||||||
t.host = host
|
t.host = host
|
||||||
|
|
Loading…
Reference in New Issue