appmesh 1.3.8__py3-none-any.whl → 1.3.9__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
appmesh/tcp_client.py
CHANGED
@@ -162,7 +162,10 @@ class AppMeshClientTCP(AppMeshClient):
|
|
162
162
|
raise ValueError(f"Server did not respond with socket transfer option: {self.HTTP_HEADER_KEY_X_RECV_FILE_SOCKET}")
|
163
163
|
|
164
164
|
with open(local_file, "wb") as fp:
|
165
|
-
while
|
165
|
+
while True:
|
166
|
+
chunk_data = self.tcp_transport.receive_message()
|
167
|
+
if not chunk_data:
|
168
|
+
break
|
166
169
|
fp.write(chunk_data)
|
167
170
|
|
168
171
|
if apply_file_attributes:
|
@@ -4,10 +4,10 @@ appmesh/app_output.py,sha256=JK_TMKgjvaw4n_ys_vmN5S4MyWVZpmD7NlKz_UyMIM8,1015
|
|
4
4
|
appmesh/app_run.py,sha256=D4j_SaA16_RtZ2-Ey6X4HIyngvLdfFHgyzYurDT1ATc,1753
|
5
5
|
appmesh/appmesh_client.py,sha256=0ltkqHZUq094gKneYmC0bEZCP0X9kHTp9fccKdWFWP0,339
|
6
6
|
appmesh/http_client.py,sha256=miO52kW8d9s0tGn42SxbOPtVNu9ZL8HDFCoCCMXm_EA,47484
|
7
|
-
appmesh/tcp_client.py,sha256=
|
7
|
+
appmesh/tcp_client.py,sha256=UsdD_APVPRy5CtgX1_hJyljols8cmCBoEiWlKH2gYOM,10933
|
8
8
|
appmesh/tcp_messages.py,sha256=w1Kehz_aX4X2CYAUsy9mFVJRhxnLQwwc6L58W4YkQqs,969
|
9
9
|
appmesh/tcp_transport.py,sha256=YlKMaE-oaKLmGuBdWIyKz3YH4ZPMgJWHBZYbINtUoYM,6934
|
10
|
-
appmesh-1.3.
|
11
|
-
appmesh-1.3.
|
12
|
-
appmesh-1.3.
|
13
|
-
appmesh-1.3.
|
10
|
+
appmesh-1.3.9.dist-info/METADATA,sha256=YvI0e_YQxbntROWaY7oxJn9ksDq-dCXDmGwyv1xE6Vk,11191
|
11
|
+
appmesh-1.3.9.dist-info/WHEEL,sha256=R06PA3UVYHThwHvxuRWMqaGcr-PuniXahwjmQRFMEkY,91
|
12
|
+
appmesh-1.3.9.dist-info/top_level.txt,sha256=-y0MNQOGJxUzLdHZ6E_Rfv5_LNCkV-GTmOBME_b6pg8,8
|
13
|
+
appmesh-1.3.9.dist-info/RECORD,,
|
File without changes
|
File without changes
|