Mention new verbosity level to NEWS (#484).
continuous-integration/drone/push Build is failing Details

This commit is contained in:
Dan Helfman 2023-05-30 15:52:49 -07:00
parent c0aaba6891
commit b222f6a60b
2 changed files with 4 additions and 1 deletions

2
NEWS
View File

@ -1,4 +1,6 @@
1.7.14.dev0
* #484: Add a new verbosity level (-2) to disable output entirely (for console, syslog, log file,
or monitoring), so not even errors are shown.
* #688: Tweak archive check probing logic to use the newest timestamp found when multiple exist.
* #659: Add Borg 2 date-based matching flags to various actions for archive selection.

View File

@ -242,7 +242,8 @@ def test_run_configuration_retries_hard_error():
).and_return([flexmock()])
error_logs = [flexmock()]
flexmock(module).should_receive('log_error_records').with_args(
'foo: Error running actions for repository', OSError,
'foo: Error running actions for repository',
OSError,
).and_return(error_logs)
config = {'location': {'repositories': [{'path': 'foo'}]}, 'storage': {'retries': 1}}
arguments = {'global': flexmock(monitoring_verbosity=1, dry_run=False), 'create': flexmock()}