rclone-api 1.1.86__py2.py3-none-any.whl → 1.1.87__py2.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.
- rclone_api/profile/mount_copy_bytes.py +6 -10
- {rclone_api-1.1.86.dist-info → rclone_api-1.1.87.dist-info}/METADATA +1 -1
- {rclone_api-1.1.86.dist-info → rclone_api-1.1.87.dist-info}/RECORD +7 -7
- {rclone_api-1.1.86.dist-info → rclone_api-1.1.87.dist-info}/LICENSE +0 -0
- {rclone_api-1.1.86.dist-info → rclone_api-1.1.87.dist-info}/WHEEL +0 -0
- {rclone_api-1.1.86.dist-info → rclone_api-1.1.87.dist-info}/entry_points.txt +0 -0
- {rclone_api-1.1.86.dist-info → rclone_api-1.1.87.dist-info}/top_level.txt +0 -0
|
@@ -128,8 +128,12 @@ def _run_profile(
|
|
|
128
128
|
direct_io=direct_io,
|
|
129
129
|
mount_log=mount_log,
|
|
130
130
|
)
|
|
131
|
+
bytes_count = 0
|
|
131
132
|
for i in range(num):
|
|
132
|
-
|
|
133
|
+
bytes_or_err = filechunker.fetch(offset.as_int(), size.as_int()).result()
|
|
134
|
+
if isinstance(bytes_or_err, Exception):
|
|
135
|
+
assert False, f"Error: {bytes_or_err}"
|
|
136
|
+
bytes_count += len(bytes_or_err)
|
|
133
137
|
|
|
134
138
|
start = time.time()
|
|
135
139
|
net_io_start = psutil.net_io_counters()
|
|
@@ -163,18 +167,10 @@ def _run_profile(
|
|
|
163
167
|
|
|
164
168
|
diff = time.time() - start
|
|
165
169
|
net_io_end = psutil.net_io_counters()
|
|
166
|
-
if isinstance(bytes_or_err, Exception):
|
|
167
|
-
print(bytes_or_err)
|
|
168
|
-
stack_trace = bytes_or_err.__traceback__
|
|
169
|
-
print(f"Error: {bytes_or_err}\nStack trace:\n{stack_trace}")
|
|
170
|
-
assert False, f"Error: {bytes_or_err}\nStack trace:\n{stack_trace}"
|
|
171
|
-
assert isinstance(bytes_or_err, bytes)
|
|
172
170
|
# self.assertEqual(len(bytes_or_err), size)
|
|
173
|
-
assert
|
|
171
|
+
assert bytes_count == size.as_int(), f"Length: {bytes_count} != {size}"
|
|
174
172
|
|
|
175
173
|
# print io stats
|
|
176
|
-
# disabling num for now
|
|
177
|
-
num = 1
|
|
178
174
|
bytes_sent = (net_io_end.bytes_sent - net_io_start.bytes_sent) // num
|
|
179
175
|
bytes_recv = (net_io_end.bytes_recv - net_io_start.bytes_recv) // num
|
|
180
176
|
packets_sent = (net_io_end.packets_sent - net_io_start.packets_sent) // num
|
|
@@ -25,7 +25,7 @@ rclone_api/cmd/copy_large_s3.py,sha256=a-NtpIhy3gj1umIyS0JG1qQMCbsLQoi6VP6u2NjBG
|
|
|
25
25
|
rclone_api/cmd/list_files.py,sha256=x8FHODEilwKqwdiU1jdkeJbLwOqUkUQuDWPo2u_zpf0,741
|
|
26
26
|
rclone_api/experimental/flags.py,sha256=qCVD--fSTmzlk9hloRLr0q9elzAOFzPsvVpKM3aB1Mk,2739
|
|
27
27
|
rclone_api/experimental/flags_base.py,sha256=ajU_czkTcAxXYU-SlmiCfHY7aCQGHvpCLqJ-Z8uZLk0,2102
|
|
28
|
-
rclone_api/profile/mount_copy_bytes.py,sha256=
|
|
28
|
+
rclone_api/profile/mount_copy_bytes.py,sha256=jojw39qHJ5fBN0qC75gtqZF-lRrO1PzysT8jxk0K-eo,8564
|
|
29
29
|
rclone_api/s3/api.py,sha256=qxtRDUpHYqJ7StJRtP8U_PbF_BvYRg705568SyvF-R0,3770
|
|
30
30
|
rclone_api/s3/basic_ops.py,sha256=hK3366xhVEzEcjz9Gk_8lFx6MRceAk72cax6mUrr6ko,2104
|
|
31
31
|
rclone_api/s3/chunk_file.py,sha256=D6wM9Nuu73LNGC8JCCfevqjF3qdZ21mQxYQClFLZLMU,3726
|
|
@@ -33,9 +33,9 @@ rclone_api/s3/chunk_types.py,sha256=LbXayXY1KgVU1LkdbASD_BQ7TpVpwVnzMjtz--8LBaE,
|
|
|
33
33
|
rclone_api/s3/create.py,sha256=wgfkapv_j904CfKuWyiBIWJVxfAx_ftemFSUV14aT68,3149
|
|
34
34
|
rclone_api/s3/types.py,sha256=yBnJ38Tjk6RlydJ-sqZ7DSfyFloy8KDYJ0mv3vlOzLE,1388
|
|
35
35
|
rclone_api/s3/upload_file_multipart.py,sha256=y9azNAU8QH5Ovwz33V2HZwNmJdlFjJg-jrXLZ1gtMds,10364
|
|
36
|
-
rclone_api-1.1.
|
|
37
|
-
rclone_api-1.1.
|
|
38
|
-
rclone_api-1.1.
|
|
39
|
-
rclone_api-1.1.
|
|
40
|
-
rclone_api-1.1.
|
|
41
|
-
rclone_api-1.1.
|
|
36
|
+
rclone_api-1.1.87.dist-info/LICENSE,sha256=b6pOoifSXiUaz_lDS84vWlG3fr4yUKwB8fzkrH9R8bQ,1064
|
|
37
|
+
rclone_api-1.1.87.dist-info/METADATA,sha256=Z7jdHJNlQW9te4Th9oUmqd6ZFYlOnHpvnFlwBBhiyX4,4537
|
|
38
|
+
rclone_api-1.1.87.dist-info/WHEEL,sha256=rF4EZyR2XVS6irmOHQIJx2SUqXLZKRMUrjsg8UwN-XQ,109
|
|
39
|
+
rclone_api-1.1.87.dist-info/entry_points.txt,sha256=TV8kwP3FRzYwUEr0RLC7aJh0W03SAefIJNXTJ-FdMIQ,200
|
|
40
|
+
rclone_api-1.1.87.dist-info/top_level.txt,sha256=EvZ7uuruUpe9RiUyEp25d1Keq7PWYNT0O_-mr8FCG5g,11
|
|
41
|
+
rclone_api-1.1.87.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|