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: Add null check before shutil.copy to prevent NoneType error
This fixes a crash when processing redis-benchmark tests where
full_result_path is None. The test execution and metrics collection
complete successfully, but the file preservation step would fail.
Changes:
- Add null check before shutil.copy(full_result_path, dest_fpath)
- Log warning message when result path is unavailable
- Prevents TypeError: stat: path should be string, not NoneType
Fixes issue observed in:
- memtier_benchmark-nokeys-pubsub-mixed-100-channels test
- Other redis-benchmark output conversion scenarios
0 commit comments