Remove reboot for unrebootable pools

This commit is contained in:
Ben Sarmiento
2024-01-28 21:38:22 +01:00
parent 573cfa1436
commit 4ff88372bc
3 changed files with 2 additions and 22 deletions

View File

@@ -177,14 +177,14 @@ func (z *ZurgConfig) EnableDownloadMount() bool {
func (z *ZurgConfig) GetApiTimeoutSecs() int {
if z.ApiTimeoutSecs == 0 {
return 4
return 30
}
return z.ApiTimeoutSecs
}
func (z *ZurgConfig) GetDownloadTimeoutSecs() int {
if z.DownloadTimeoutSecs == 0 {
return 2
return 15
}
return z.DownloadTimeoutSecs
}