This is an automated email from the ASF dual-hosted git repository.

bbender pushed a commit to branch develop
in repository https://gitbox.apache.org/repos/asf/geode-native.git


The following commit(s) were added to refs/heads/develop by this push:
     new bab0b52  Fix regex used to read server handshake requests (#946)
bab0b52 is described below

commit bab0b5238b6b7688645a935bbaa74532f0f4d9b8
Author: Blake Bender <[email protected]>
AuthorDate: Fri Mar 11 12:42:04 2022 -0800

    Fix regex used to read server handshake requests (#946)
---
 tools/gnmsg/handshake_decoder.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/gnmsg/handshake_decoder.py b/tools/gnmsg/handshake_decoder.py
index 331c121..dffc3bb 100644
--- a/tools/gnmsg/handshake_decoder.py
+++ b/tools/gnmsg/handshake_decoder.py
@@ -60,7 +60,7 @@ class HandshakeDecoder(DecoderBase):
             r"(\d\d\d\d\/\d\d\/\d\d \d\d:\d\d:\d\d\.\d+).* ([\d]+) 
.*\]\s*ThinClientLocatorHelper::sendRequest\([0-9|a-f|A-F|x|X]+\): received \d+ 
bytes from locator:\s*([0-9|a-f|A-F]+)"
         )
         self.server_handshake_request_expression_ = expression = re.compile(
-            r"(\d\d\d\d\/\d\d\/\d\d \d\d:\d\d:\d\d\.\d+).* ([\d]+) 
.*\]\s*Handshake bytes: \(\d+\):\s*([0-9|a-f|A-F]+)"
+            r"(\d\d\d\d\/\d\d\/\d\d \d\d:\d\d:\d\d\.\d+).* ([\d]+) 
.*\].*\sHandshake bytes: \(\d+\):\s*([0-9|a-f|A-F]+)"
         )
         self.server_handshake_response_expression_ = expression = re.compile(
             r"(\d\d\d\d\/\d\d\/\d\d \d\d:\d\d:\d\d\.\d+).* ([\d]+) 
.*\].*isClientNotification=([t|r|u|e|f|a|l|s]+),\s+Handshake response bytes: 
\(\d+\)\s*([0-9|a-f|A-F]+)"

Reply via email to