mirror of
https://github.com/n8n-io/n8n.git
synced 2025-11-20 17:46:34 +00:00
fix(core): Fix binary data manager check on pruning (#7251)
Ensure that we do not attempt to prune binary data in `default` binary data mode.
This commit is contained in:
parent
d47986aec3
commit
484035eb51
@ -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;
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user