feat(core): Remove conditional defaults in V1 release (#6363)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-06-02 11:10:19 +00:00
committed by कारतोफ्फेलस्क्रिप्ट™
parent e152cfe27c
commit f6366160a4
6 changed files with 7 additions and 30 deletions

View File

@@ -65,11 +65,6 @@ export abstract class BaseCommand extends Command {
this.exitWithCrash('There was an error running database migrations', error),
);
if (process.env.WEBHOOK_TUNNEL_URL) {
LoggerProxy.warn(
'You are still using the WEBHOOK_TUNNEL_URL environment variable. It has been deprecated and will be removed in a future version of n8n. Please switch to using WEBHOOK_URL instead.',
);
}
const dbType = config.getEnv('database.type');
if (['mysqldb', 'mariadb'].includes(dbType)) {