-
Notifications
You must be signed in to change notification settings - Fork 9
ClassCastException when arangodb.acquireHostList=true #21
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
Comments
Any update on this please? |
I haven't worked on this yet. Also consider that we are currently working on a rewrite of the driver based on reactive streams, which will supersede the asynchronous driver. You can follow the development here: https://github.com/arangodb/arangodb-java-driver/tree/next |
Thanks for the update @rashtao try {
arangoDatabase.getInfo.get()
} catch {
// The first call fails with a CCE due to a bug in ArangoDB Java Driver (arangodb/arangodb-java-driver-async#21)
case ee: ExecutionException if ee.getCause.isInstanceOf[ClassCastException] =>
arangoDatabase.getInfo.get()
} |
Fixed by arangodb/arangodb-java-driver#378 |
When
arangodb.acquireHostList=true
is setcom.arangodb.ArangoDBTest
fails with the following error:The text was updated successfully, but these errors were encountered: