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
For anyone interested, I have written a TypeScript overlay to the official SDK, and that package does not have the issue introduced in 4.4.4 in the official package. It does fix the double invocation mentioned in https://jira.issues.couchbase.com/browse/JSCBC-1298 though.
Hi @abhilash-sivan -- I have created JSCBC-1311 for tracking within our JIRA system. Will follow-up once the fix is made available (target is the next release v4.4.5).
Hi team,
In the latest release v4.4.4, we found an issue affecting our query execution.
Due to changes in this commit, the asynchronous behavior of query executions is affected in
callback method
.If a query execution fails, it is immediately thrown as an error, and further execution is blocked.
We don't have control over handling the failure.
We expect the failed query won't affect the current execution and the workflow continues until manually thrown like below:
Handling like below doesn't work anymore:
As a workaround solution, we are forced to catch the returned promise and handle the error cases separately:
This is coming from the change in
PromiseHelper
in the commit, Please take a look.Thanks in advance,
Abhilash
The text was updated successfully, but these errors were encountered: