Disable backup progress notifications for unit tests

We have code somewhere which is firing backup createprogress
notifications into the notifier, which causes random unit
test failures.

Until we determine exactly why this happening, attempt to
avoid this problem in the gate by disabling these notifications.

Related-Bug: #1412513

Change-Id: I50b7946562e757ee26cb68b17b4a5ffcd5f3fabd
This commit is contained in:
Eric Harney 2015-06-02 16:26:58 -04:00
parent 376f972362
commit e5f6ed69e0
1 changed files with 2 additions and 0 deletions

View File

@ -52,3 +52,5 @@ def set_defaults(conf):
os.path.join(os.path.dirname(__file__), '..', '..', '..')))
conf.set_default('policy_dirs', [])
conf.set_default('auth_strategy', 'noauth')
conf.set_default('backup_enable_progress_timer', False)
conf.set_default('backup_swift_enable_progress_timer', False)