1
0
Fork 0

feat: reduce the default retry count to 4

timestamps
dump_stack() 2023-05-24 18:51:02 +00:00
parent 7d0ee9a1dc
commit bf9a43c1b8
Signed by: dump_stack
GPG Key ID: BE44DA8C062D87DC
1 changed files with 1 additions and 1 deletions

View File

@ -119,7 +119,7 @@ func NewSystem(arch arch, kernel Kernel, drivePath string) (q *System, err error
// Default values
q.Cpus = 1
q.Memory = 512 // megabytes
q.SSH.Retries = 16
q.SSH.Retries = 4
q.SSH.RetryTimeout = time.Second / 4
return