Closed agix closed 4 years ago
Thanks a lot @agix !
The regular docker-image uses already Node v12. So the Ubuntu image should actually do the same. So changed the image accordingly.
The next version of n8n will automatically build the image with v12.
perfect
Le mar. 10 mars 2020 à 19:47, Jan notifications@github.com a écrit :
Thanks a lot @agix https://github.com/agix !
The regular docker-image uses already Node v12. So the Ubuntu image should actually do the same. So changed the image accordingly.
The next version of n8n will automatically build the image with v12.
— You are receiving this because you were mentioned. Reply to this email directly, view it on GitHub https://github.com/n8n-io/n8n/issues/352?email_source=notifications&email_token=AATQCHZATKMJ6FPO3QIY6UDRG2DK7A5CNFSM4LBDQUY2YY3PNVWWK3TUL52HS4DFVREXG43VMVBW63LNMVXHJKTDN5WW2ZLOORPWSZGOEOMVNXI#issuecomment-597251805, or unsubscribe https://github.com/notifications/unsubscribe-auth/AATQCH5MBAKRPMRBDA7ONETRG2DK7ANCNFSM4LBDQUYQ .
Got released with n8n@0.56.0
Describe the bug Stdout of executed command is truncated according to the default
maxBuffer
options ofchild_process
which is 200 * 1024 in node < v12To Reproduce Steps to reproduce the behavior: Execute the following workflow on 0.55.1-ubuntu :
Expected behavior
{"stdoutLength": 204801}
Environment (please complete the following information): 0.55.1-ubuntu
Additional context Either bump the nodejs version of docker-ubuntu to node >= v12 as they increased the default
maxBuffer
to 1024 * 1024 and/or allow exec options to be passed into ExecuteCommand node type.