Remove logging of current n8n worker count in apply_update.sh to streamline user prompts and enhance clarity during input collection.

This commit is contained in:
Yury Kossakovsky
2025-05-14 14:41:07 -06:00
parent cd866edbdd
commit 0bada5dde9

View File

@@ -62,7 +62,6 @@ if [ -f "$ENV_FILE" ]; then
# Ask user about n8n worker count
if grep -q "^N8N_WORKER_COUNT=" "$ENV_FILE"; then
CURRENT_WORKER_COUNT=$(grep "^N8N_WORKER_COUNT=" "$ENV_FILE" | cut -d'=' -f2 | tr -d '"')
log_info "Current n8n worker count: $CURRENT_WORKER_COUNT"
echo ""
read -p "Enter new n8n worker count (leave empty to keep current: $CURRENT_WORKER_COUNT): " new_worker_count_raw