Skip to content

Commit

Permalink
fix: minor correction to output path
Browse files Browse the repository at this point in the history
  • Loading branch information
danellecline committed Oct 12, 2023
1 parent f979be9 commit bcf2887
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/daemon/docker_runner.py
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ def get_results(self):
total_time = datetime.utcnow() - self._start_utc
if len(list(self._out_path.glob('*.tar.gz'))) > 0:
track_path = Path(list(self._out_path.glob('*.tar.gz'))[0])
s3_loc = f'{self._output_s3}/output/{track_path.name}'
s3_loc = f'{self._output_s3}/{track_path.name}'
return s3_loc, track_path, self.get_num_tracks(), total_time.total_seconds()

return None, None, None, None
Expand Down

0 comments on commit bcf2887

Please sign in to comment.