mirror of https://github.com/BOINC/boinc.git
VBOX: Effectively remove the retry logic when commands fail because of a session lock error. They still happen and nobody has reported a difference in pace rates because of it.
This commit is contained in:
parent
8ac1d88df1
commit
3bfcef250e
|
@ -1911,7 +1911,7 @@ int VBOX_VM::vbm_popen(string& arguments, string& output, const char* item, bool
|
|||
if (!retry_failures) break;
|
||||
|
||||
// Timeout?
|
||||
if (retry_count >= 5) break;
|
||||
if (retry_count >= 1) break;
|
||||
|
||||
retry_count++;
|
||||
boinc_sleep(sleep_interval);
|
||||
|
|
Loading…
Reference in New Issue