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
Hello @asfernandes
I came across this error recently. I know it occurs when this.resultSetHandle!.closeAsync(status) is called at line 36 of node-firebird-driver-native/src/lib/resultset.ts
Using segfault-handler I manage to capture the native addon stack trace.
Do you have an idea of what might be going wrong ? Is there a way to handle this error?
It could happen if you call async functions not awaiting (with await or promises.then) them and calling another async functions related. For example: calling close two times. Closing a resultSet and the connection simultaneously.
If it's not the case it could be analyzed with a more or less consistent reproducable test case.
Hello @asfernandes
I came across this error recently. I know it occurs when
this.resultSetHandle!.closeAsync(status)
is called at line 36 ofnode-firebird-driver-native/src/lib/resultset.ts
Using segfault-handler I manage to capture the native addon stack trace.
Do you have an idea of what might be going wrong ? Is there a way to handle this error?
The text was updated successfully, but these errors were encountered: