Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
-
None
-
None
-
ghx-label-10
Description
If the test fails in _wait_for_num_open_sessions then the failure says
E TypeError: not all arguments converted during string formatting
which is the result of
LOG.exception("Error: " % err)
which should be
LOG.exception("Error: %s" % err)