We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8af0e2f commit 364cc22Copy full SHA for 364cc22
evalscope/service/blueprints/perf.py
@@ -131,7 +131,7 @@ def get_performance_progress():
131
if not task_id:
132
return jsonify({'error': 'task_id is required'}), 400
133
134
- progress_file = os.path.join(OUTPUT_DIR, task_id, 'progress.json')
+ progress_file = os.path.join(OUTPUT_DIR, task_id, 'perf', 'progress.json')
135
try:
136
with open(progress_file, 'r') as f:
137
progress = json.load(f)
0 commit comments