summaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorMartin Ebourne <martin@ebourne.me.uk>2005-12-20 17:10:11 +0000
committerMartin Ebourne <martin@ebourne.me.uk>2005-12-20 17:10:11 +0000
commit21573ea910f992f9cacd356d536ba3f1064f6e01 (patch)
tree5815f490c51bef09db0eae89edeb4d26eaae77ab /bin
parent8c4be43948dbe9a3bafd9d2fa8f350cb3359828e (diff)
Revert this change to the error retry delay that slipped in with win32. Arguably the timeout was already too short, or should use an increasing backoff strategy. But 10s is way too short.
Diffstat (limited to 'bin')
-rw-r--r--bin/bbackupd/BackupDaemon.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/bbackupd/BackupDaemon.cpp b/bin/bbackupd/BackupDaemon.cpp
index 6c5422ca..954504a6 100644
--- a/bin/bbackupd/BackupDaemon.cpp
+++ b/bin/bbackupd/BackupDaemon.cpp
@@ -724,7 +724,7 @@ void BackupDaemon::Run2()
"to retry...",
errorString, errorCode,
errorSubCode);
- ::sleep(10);
+ ::sleep(100);
}
}