[Box Backup-commit] COMMIT r3435 - box/trunk/lib/backupclient

subversion at boxbackup.org subversion at boxbackup.org
Sat Dec 6 12:54:33 GMT 2014


Author: chris
Date: 2014-12-06 12:54:32 +0000 (Sat, 06 Dec 2014)
New Revision: 3435

Modified:
   box/trunk/lib/backupclient/BackupDaemonConfigVerify.cpp
Log:
The BackupErrorDelay configuration key should not be required.

It has a sensible default, and backwards compatibility is broken by requiring it.

> Description of fields to fill in above:                     76 columns --|
> PR:                       If a GNATS PR is affected by the change.
> Differential Revision:    https://reviews.freebsd.org/D### (*full* phabric URL needed).
> Submitted by:             If someone else sent in the change.
> Reviewed by:              If someone else reviewed your modification.
> Approved by:              If you needed approval for this commit.
> Obtained from:            If the change is from a third party.
> MFC after:                N [day[s]|week[s]|month[s]].  Request a reminder email.
> MFH:                      Ports tree branch name.  Request approval for merge.
> Relnotes:                 Set to 'yes' for mention in release notes.
> Security:                 Vulnerability reference (one per line) or description.
> Sponsored by:             If the change was sponsored by an organization.
> Empty fields above will be automatically removed.

M    BackupDaemonConfigVerify.cpp


Modified: box/trunk/lib/backupclient/BackupDaemonConfigVerify.cpp
===================================================================
--- box/trunk/lib/backupclient/BackupDaemonConfigVerify.cpp	2014-12-03 20:12:28 UTC (rev 3434)
+++ box/trunk/lib/backupclient/BackupDaemonConfigVerify.cpp	2014-12-06 12:54:32 UTC (rev 3435)
@@ -70,7 +70,7 @@
 	ConfigurationVerifyKey("UpdateStoreInterval",
 		ConfigTest_Exists | ConfigTest_IsInt),
 	ConfigurationVerifyKey("BackupErrorDelay",
-		ConfigTest_Exists | ConfigTest_IsInt, BACKUP_ERROR_RETRY_SECONDS),
+		ConfigTest_IsInt, BACKUP_ERROR_RETRY_SECONDS),
 	ConfigurationVerifyKey("MinimumFileAge",
 		ConfigTest_Exists | ConfigTest_IsInt),
 	ConfigurationVerifyKey("MaxUploadWait",




More information about the Boxbackup-commit mailing list