How to suppress "missed backup" alerts
Apr 10, 2018
Overview
When a backup job is set to run periodically, the program will flag the job with an error if the job misses a scheduled run. This happens in three cases:
1. The program was running, the job was due, but either or both of
job's devices weren't present.
2. The program was not running, when the job was due. In this case
the error is logged on program's launch.
3. The computer was asleep, when the job was due. In this case the
error is logged when the machine is woken up.
It is possible to suppress or delay error reporting in all three cases.
1
Apr 10, 2018
Case 1 - Missing devices
The backup engine can delay reporting an error for a configured amount of time, which is referred to as a "grace period". The grace period is started with the first "missed backup" failure and it is reset with the first successful backup.
This option is controlled with the following entry in job's settings.ini:
conf.missed_run.grace_period
By default it is set to 0:0, which stands for "disabled". The value of this entry is a "time interval", so it can be set to "1 hour", "3 days", etc.
* See
https://bvckup2.com/support/forum/topic/933 for how to find and edit the settings.ini file.
2
Apr 10, 2018
Case 2 - Program wasn't running
It's possible to suppress the "missed backup" error using the following entry in settings.ini file for the job:
conf.missed_run.register_on_launch 0
By default it will be set to 1, which stands to "enabled".
* See
https://bvckup2.com/support/forum/topic/933 for how to find and edit the settings.ini file.
3
Apr 10, 2018
Case 3 - Computer was asleep
It's possible to suppress the "missed backup" error using the following entry in settings.ini file for the job:
conf.missed_run.register_on_wakeup 0
By default it will be set to 1, which stands to "enabled".
* See
https://bvckup2.com/support/forum/topic/933 for how to find and edit the settings.ini file.