Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

failed to apply resource at /graphs/sparql: Bad Request. Server Message: XDMP-NOTXN: No transaction with identifier .... #81

Open
AlexTo opened this issue Sep 19, 2019 · 0 comments

Comments

@AlexTo
Copy link

AlexTo commented Sep 19, 2019

I always wrap write transactional code like this

try {
  ds.begin(ReadWrite.WRITE);
 ...
  ds.commit();
} catch (Exception e) {
  ds.abort();
 throw e;
}

But what I notice is that if for some reason, it fails and ds.abort() is called. The next time if there is another call to open a new transaction then I will receive error : " failed to apply resource at /graphs/sparql: Bad Request. Server Message: XDMP-NOTXN: No transaction with identifier ..".

As if I am still in a "dead" transaction and abort() does not seem to work?

Thanks

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant