mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
14 lines
342 B
Python
14 lines
342 B
Python
# Local task broker
|
|
LOCAL_TASK_BROKER_PORT = 8080
|
|
LOCAL_TASK_BROKER_URL = f"http://localhost:{LOCAL_TASK_BROKER_PORT}"
|
|
LOCAL_TASK_BROKER_WS_PATH = "/runners/_ws"
|
|
|
|
# Timing
|
|
TASK_RESPONSE_WAIT = 3
|
|
TASK_TIMEOUT = 2
|
|
GRACEFUL_SHUTDOWN_TIMEOUT = 1
|
|
|
|
# Health check
|
|
HEALTH_CHECK_PORT = 5679
|
|
HEALTH_CHECK_URL = f"http://localhost:{HEALTH_CHECK_PORT}"
|