Skip to content

Commit

Permalink
Fix Storj delimiter while removing unused assets (#242)
Browse files Browse the repository at this point in the history
  • Loading branch information
leszko authored Jun 19, 2024
1 parent ab118fd commit 69c3cc5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion task/runner.go
Original file line number Diff line number Diff line change
Expand Up @@ -623,7 +623,7 @@ func deleteAsset(asset *api.Asset, r *runner, ctx context.Context) error {
return err
}

directory := fmt.Sprintf("%s/", asset.PlaybackID)
directory := fmt.Sprintf("hls/%s/", asset.PlaybackID)
var totalDeleted int

glog.Infof("Listing files in directory %v", directory)
Expand Down

0 comments on commit 69c3cc5

Please sign in to comment.