We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e23843c commit feed499Copy full SHA for feed499
python/pyspark/worker.py
@@ -39,9 +39,9 @@
39
40
def report_times(outfile, boot, init, finish):
41
write_int(SpecialLengths.TIMING_DATA, outfile)
42
- write_long(1000 * boot, outfile)
43
- write_long(1000 * init, outfile)
44
- write_long(1000 * finish, outfile)
+ write_long(int(1000 * boot), outfile)
+ write_long(int(1000 * init), outfile)
+ write_long(int(1000 * finish), outfile)
45
46
47
def add_path(path):
0 commit comments