refactor(core): Change task runner default healthcheck server port to 5681 (no-changelog) (#11910)

This commit is contained in:
Tomi Turtiainen
2024-11-27 10:48:13 +02:00
committed by GitHub
parent 137193c3e9
commit 9cc3b210d7

View File

@@ -9,7 +9,7 @@ class HealthcheckServerConfig {
host: string = '127.0.0.1'; host: string = '127.0.0.1';
@Env('N8N_RUNNERS_SERVER_PORT') @Env('N8N_RUNNERS_SERVER_PORT')
port: number = 5680; port: number = 5681;
} }
@Config @Config