解决N8N运行默认code节点都超时的问题
解决方法n8n启动的时候连接了外部的n8n runner需要排查外部的runner是否正常运行问题解析新建一个code节点直接运行如// Loop over input items and add a new field called myNewField to the JSON of each onefor(constitemof$input.all()){item.json.myNewField1;}return$input.all();直接报错Task request timed out after 60 seconds Your Code node task was not matched to a runner within the timeout period. This indicates that the task runner is currently down, or not ready, or at capacity, so it cannot service your task. If you are repeatedly executing Code nodes with long-running tasks across your instance, please space them apart to give the runner time to catch up. If this does not describe your use case, please open a GitHub issue or reach out to support. If needed, you can increase the timeout using the N8N_RUNNERS_TASK_REQUEST_TIMEOUT environment variable.Problem in node ‘Code in JavaScript2‘ Task request timed out after 60 seconds