Skip to content

Commit

Permalink
fix(core): Fix binary data manager check on pruning
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov committed Sep 25, 2023
1 parent d47986a commit 8758c70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/core/src/BinaryData/BinaryData.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ export class BinaryDataService {
}

async deleteManyByExecutionIds(executionIds: string[]) {
const manager = this.getManager(this.mode);
const manager = this.managers[this.mode];

if (!manager) return;

Expand Down

0 comments on commit 8758c70

Please sign in to comment.