run_process_on_route.py: use zstd

old-commit-hash: b41f9f2dfe89cdb94b60dfa8c619829725dc8226
This commit is contained in:
Shane Smiskol
2024-08-16 00:08:17 -07:00
parent 61c1bb5fb2
commit 1f04a80d38

View File

@@ -25,6 +25,6 @@ if __name__ == "__main__":
inputs = [i for i in inputs if i.which() not in produces]
outputs = sorted(inputs + outputs, key=lambda x: x.logMonoTime)
fn = f"{args.route.replace('/', '_')}_{args.process}.bz2"
print(f"Saved log to {fn}")
fn = f"{args.route.replace('/', '_')}_{args.process}.zst"
print(f"Saving log to {fn}")
save_log(fn, outputs)