A small fix (#55938)

This commit is contained in:
helifu 2023-10-26 19:19:58 +08:00 committed by GitHub
parent f3e07b0fb3
commit 4015176d27
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -159,7 +159,7 @@ def generate_random_files(
values_csv = (
"\n".join((",".join(map(str, row)) for row in rand_values)) + "\n"
).encode()
print(f"File {filename}, content: {total_values}")
print(f"File {filename}, content: {rand_values}")
put_s3_file_content(started_cluster, filename, values_csv)
return total_values