From 4f3ff0f991126324ccacfa500a2fe3d0e67fe44e Mon Sep 17 00:00:00 2001 From: Eric Gable Date: Mon, 8 Apr 2013 11:34:43 -0700 Subject: [PATCH] Merge from branch wire_protocol Warn and continue if wire protocol is incorrect --- waagent | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/waagent b/waagent index cd6c27a..2cbcade 100644 --- a/waagent +++ b/waagent @@ -1476,9 +1476,9 @@ class Agent(Util): v = GetNodeTextData(a.getElementsByTagName("Version")[0]) Log("Fabric preferred wire protocol version: " + v) if not protocolVersionSeen: - Error("Agent supported wire protocol version: " + ProtocolVersion + " was not advertised by Fabric.") - return False - Log("Negotiated wire protocol version: " + ProtocolVersion) + Warn("Agent supported wire protocol version: " + ProtocolVersion + " was not advertised by Fabric.") + else: + Log("Negotiated wire protocol version: " + ProtocolVersion) return True def Unpack(self, buffer, offset, range):