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:
Rom Walton 2013-11-19 10:04:19 -05:00
parent 8ac1d88df1
commit 3bfcef250e
1 changed files with 1 additions and 1 deletions

View File

@ -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);