mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-12 15:44:06 -08: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[]) {
|
async deleteManyByExecutionIds(executionIds: string[]) {
|
||||||
const manager = this.getManager(this.mode);
|
const manager = this.managers[this.mode];
|
||||||
|
|
||||||
if (!manager) return;
|
if (!manager) return;
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue