From 3bfcef250ed726caad97d13fc480276ddc415f53 Mon Sep 17 00:00:00 2001 From: Rom Walton Date: Tue, 19 Nov 2013 10:04:19 -0500 Subject: [PATCH] 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. --- samples/vboxwrapper/vbox.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/samples/vboxwrapper/vbox.cpp b/samples/vboxwrapper/vbox.cpp index a4258f84cb..8afb856287 100644 --- a/samples/vboxwrapper/vbox.cpp +++ b/samples/vboxwrapper/vbox.cpp @@ -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);