Ryan Harper has uploaded a new change for review. Change subject: Replace 'ovirt Engine' string with @ENGINENAME@ ......................................................................
Replace 'ovirt Engine' string with @ENGINENAME@ Commit fd1c00c6fdbd8207a631001eab106e6f78c0cca2 introduced some new messages but didn't use the @ENGINENAME@ eyecatcher. Change-Id: I23f0b6346a14f94268180db46855920e8e355f17 Signed-off-by: Ryan Harper <[email protected]> --- M vdsm_reg/engine.py.in 1 file changed, 3 insertions(+), 3 deletions(-) git pull ssh://gerrit.ovirt.org:29418/vdsm refs/changes/41/7941/1 diff --git a/vdsm_reg/engine.py.in b/vdsm_reg/engine.py.in index 74fe07a..8d52155 100644 --- a/vdsm_reg/engine.py.in +++ b/vdsm_reg/engine.py.in @@ -237,14 +237,14 @@ # Try one more time with SSL=False if not isHostReachable(host=self.engine_server.value(), port=enginePort, ssl=False, timeout=TIMEOUT_FIND_HOST_SEC): - msgConn = "Can't connect to oVirt Engine in the specific" \ + msgConn = "Can't connect to @ENGINENAME@ in the specific" \ " port %s" % enginePort ButtonChoiceWindow(self.ncs.screen, "@ENGINENAME@", msgConn, buttons = ['Ok']) return False else: - msgConn = "Can't connect to oVirt Engine port %s," \ + msgConn = "Can't connect to @ENGINENAME@ port %s," \ " trying compatible port %s" % \ (enginePort, compatPort) @@ -253,7 +253,7 @@ if not isHostReachable(host=self.engine_server.value(), port=compatPort, ssl=sslPort, timeout=TIMEOUT_FIND_HOST_SEC): - msgConn = "Can't connect to oVirt Engine using" \ + msgConn = "Can't connect to @ENGINENAME@ using" \ " compatible port %s" % compatPort ButtonChoiceWindow(self.ncs.screen, "@ENGINENAME@", msgConn, buttons = ['Ok']) -- To view, visit http://gerrit.ovirt.org/7941 To unsubscribe, visit http://gerrit.ovirt.org/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I23f0b6346a14f94268180db46855920e8e355f17 Gerrit-PatchSet: 1 Gerrit-Project: vdsm Gerrit-Branch: master Gerrit-Owner: Ryan Harper <[email protected]> _______________________________________________ vdsm-patches mailing list [email protected] https://lists.fedorahosted.org/mailman/listinfo/vdsm-patches
