You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Fix multi-client tests not writing aggregated results to files
Root cause: Multi-client tests were parsing aggregated JSON from stdout
but never writing it to the expected output file. This caused:
1. full_result_path to remain None
2. Results not being preserved to aggregated results folder
3. Missing JSON files for multi-client tests (e.g., pubsub tests)
Solution: Write the aggregated results_dict to local_benchmark_output_filename
and set full_result_path appropriately, so the file preservation logic works.
Also removed the None check workaround since it was masking the real issue.
0 commit comments