You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When result from grasp query (run in CLI) is very large, it is not completely written out on Ubuntu.
Problem is that grasp is calling process.exit, see those docs:
When result from grasp query (run in CLI) is very large, it is not completely written out on Ubuntu.
Problem is that grasp is calling process.exit, see those docs:
https://nodejs.org/api/process.html#process_a_note_on_process_i_o
https://nodejs.org/api/process.html#process_process_exit_code
The solution could be replacing
this line in bin/grasp
exit: process.exit,
for something like this
exit: (code) => { process.exitCode = code },
The text was updated successfully, but these errors were encountered: