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
stderr data may emit one complete error message by several chunks, like this:
'\n'
'ERROR:\n'
'some error message.\n\n'
So error.js can not extract both level and message from these separated chunks correctly. In fact the message will missing on error event emitting. This makes me hard to determine whether it's an incorrect password error in my scenario.
IMO the matching should be done here: onEndFactory, with full stderr chunks join together.
The text was updated successfully, but these errors were encountered:
stderr data may emit one complete error message by several chunks, like this:
So error.js can not extract both
level
andmessage
from these separated chunks correctly. In fact themessage
will missing onerror
event emitting. This makes me hard to determine whether it's an incorrect password error in my scenario.IMO the matching should be done here: onEndFactory, with full stderr chunks join together.
The text was updated successfully, but these errors were encountered: