mirror of
https://github.com/ThomasGsp/HyperProxmox.git
synced 2025-02-12 19:22:30 +00:00
fix str to int for delay RunAnalyse
This commit is contained in:
parent
c726e15bde
commit
0eee74e730
1 changed files with 1 additions and 1 deletions
|
@ -26,7 +26,7 @@ def RunAnalyse(clusters_conf, generalconf, delay=300):
|
|||
while True:
|
||||
""" Instances types availables: lxc/qemu/all"""
|
||||
play.run("all")
|
||||
time.sleep(delay)
|
||||
time.sleep(int(delay))
|
||||
|
||||
class Core:
|
||||
|
||||
|
|
Loading…
Reference in a new issue