added rebooting, still need to add the buttons

This commit is contained in:
UpstreamData
2022-01-08 19:49:12 -07:00
parent 93665772c3
commit e9210eb37d
5 changed files with 89 additions and 9 deletions

View File

@@ -8,6 +8,7 @@ try:
NETWORK_PING_TIMEOUT: int = settings["ping_timeout"]
NETWORK_SCAN_THREADS: int = settings["scan_threads"]
CFG_UTIL_REBOOT_THREADS: int = settings["reboot_threads"]
CFG_UTIL_CONFIG_THREADS: int = settings["config_threads"]
MINER_FACTORY_GET_VERSION_RETRIES: int = settings["get_version_retries"]
@@ -16,6 +17,7 @@ except:
NETWORK_PING_TIMEOUT: int = 5
NETWORK_SCAN_THREADS: int = 300
CFG_UTIL_REBOOT_THREADS: int = 300
CFG_UTIL_CONFIG_THREADS: int = 300
MINER_FACTORY_GET_VERSION_RETRIES: int = 3