Bug #820185: Intermittent TypeError NoneType in atexit handler of unit tests
Work around what appears to be a Python standard library bug by silencing exceptions in the logging library.
This commit is contained in:
parent
66c2e1c192
commit
3373382284
@ -12,6 +12,12 @@ from swift.common.utils import readconf
|
|||||||
setattr(__builtin__, '_', lambda x: x)
|
setattr(__builtin__, '_', lambda x: x)
|
||||||
|
|
||||||
|
|
||||||
|
# Work around what seems to be a Python bug.
|
||||||
|
# c.f. https://bugs.launchpad.net/swift/+bug/820185.
|
||||||
|
import logging
|
||||||
|
logging.raiseExceptions = False
|
||||||
|
|
||||||
|
|
||||||
def get_config():
|
def get_config():
|
||||||
"""
|
"""
|
||||||
Attempt to get a functional config dictionary.
|
Attempt to get a functional config dictionary.
|
||||||
|
Loading…
Reference in New Issue
Block a user