From 34d83272dbccd070e3f979d377351b3ddb02abed Mon Sep 17 00:00:00 2001
From: Hang <hang@Hangs-MacBook-Pro.local>
Date: Tue, 26 Apr 2022 16:32:07 -0500
Subject: [PATCH] fast push

---
 sample_test/src/client.py | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/sample_test/src/client.py b/sample_test/src/client.py
index 5cb0122..9358a0f 100644
--- a/sample_test/src/client.py
+++ b/sample_test/src/client.py
@@ -37,8 +37,9 @@ def connect(coordinator_info: tuple):
     coordinator_port_number = coordinator_info[1][SERVER_PORT]
     client = socket.socket(socket.AF_INET, socket.SOCK_STREAM)
     address = (coordinator_ip_address, coordinator_port_number)
-    pprint(f'[connect] - client connect to address {address}')
+    pprint(f'[connect] - client connecting to address {address}')
     client.connect(address)
+    pprint(f'[connect] - client connecting to address {address} success!')
     return client
 
 
-- 
GitLab