Update OvsdbConnectionUnavailable error message

ovsdbapp is used by more than just OVN, e.g. Dragonflow. However, the
error message for OvsdbConnectionUnavailable is very OVN specific. This
change makes the error message more general.

Change-Id: I43a788e81ddbc0968c13d0a37181fa090f6a295c
Related-Bug: #1722839
This commit is contained in:
Omer Anson 2017-12-26 17:59:41 +02:00
parent f4a66b28ac
commit 9a2cd1af3c
1 changed files with 3 additions and 3 deletions

View File

@ -56,6 +56,6 @@ class TimeoutException(OvsdbAppException):
class OvsdbConnectionUnavailable(OvsdbAppException):
message = ("OVS database connection to %(db_schema)s failed with error: "
"'%(error)s'. Verify that the OVS and OVN services are "
"available and that the 'ovn_nb_connection' and "
"'ovn_sb_connection' configuration options are correct.")
"'%(error)s'. Verify that OVS and related services are "
"available and that the relevant configuration options "
"are correct.")