Skip to content

Commit

Permalink
Fix log tar arcname between v1 an v2
Browse files Browse the repository at this point in the history
  • Loading branch information
sambles committed Aug 16, 2024
1 parent 1de5ed2 commit 285555f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/model_execution_worker/distributed_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -1047,7 +1047,7 @@ def generate_losses_output(self, params, analysis_id=None, slug=None, **kwargs):
return {
**res,
'output_location': filestore.put(output_dir, arcname='output'),
'run_logs': filestore.put(logs_dir, arcname='logs'),
'run_logs': filestore.put(logs_dir),
'log_location': filestore.put(kwargs.get('log_filename')),
'raw_output_locations': {
r: filestore.put(os.path.join(output_dir, r), arcname=f'output_{r}')
Expand Down

0 comments on commit 285555f

Please sign in to comment.