mirror of
https://github.com/n8n-io/n8n.git
synced 2024-12-26 21:19:43 -08:00
39 lines
1 KiB
TypeScript
39 lines
1 KiB
TypeScript
import { existsSync } from 'fs';
|
|
import { mkdir, utimes, open, rm } from 'fs/promises';
|
|
import { join, dirname } from 'path';
|
|
import { Container } from 'typedi';
|
|
import { InstanceSettings } from 'n8n-core';
|
|
import { sleep } from 'n8n-workflow';
|
|
import { inProduction } from '@/constants';
|
|
import { Logger } from '@/Logger';
|
|
|
|
export const touchFile = async (filePath: string): Promise<void> => {
|
|
await mkdir(dirname(filePath), { recursive: true });
|
|
const time = new Date();
|
|
try {
|
|
await utimes(filePath, time, time);
|
|
} catch {
|
|
const fd = await open(filePath, 'w');
|
|
await fd.close();
|
|
}
|
|
};
|
|
|
|
const { n8nFolder } = Container.get(InstanceSettings);
|
|
const journalFile = join(n8nFolder, 'crash.journal');
|
|
|
|
export const init = async () => {
|
|
if (!inProduction) return;
|
|
|
|
if (existsSync(journalFile)) {
|
|
// Crash detected
|
|
Container.get(Logger).error('Last session crashed');
|
|
// add a 10 seconds pause to slow down crash-looping
|
|
await sleep(10_000);
|
|
}
|
|
await touchFile(journalFile);
|
|
};
|
|
|
|
export const cleanup = async () => {
|
|
await rm(journalFile, { force: true });
|
|
};
|