question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

verify gives error

See original GitHub issue

Whenever I try to use .verify() it gives error. But, on the other hand, I can do queries and all other stuff!

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:9

github_iconTop GitHub Comments

1reaction
joowanicommented, Jun 9, 2017

@iamhssingh Hmm you bring up an interesting point actually. It seems the Java driver ran into a similar issue: https://github.com/arangodb/arangodb-java-driver/issues/114.

I will need to make some changes to the python-arango API so all the methods in ArangoClient are also in Database level. So if you are using a non-root user, you would end up having to do something like this:

client = arango.ArangoClient(username='user', password='pass')
client.database('database_which_user_has_access_to').verify()

I will make the changes in the next release. For now, you can do a workaround something like this:

client = arango.ArangoClient(username='user', password='pass')
client.database('database_which_user_has_access_to').properties()  # use this as a ping check for now

Unfortunately this is the best we can do as this is the limitation of ArangoDB REST API (python-arango is just a wrapper around it). I will push the next release sometime this weekend.

Thanks, Joohwan

0reactions
joowanicommented, Jun 11, 2017

Hi @iamhssingh

I’ve made the changes in https://github.com/joowani/python-arango/releases/tag/3.8.0. Now you should be able to call verify() using another database. I’ve also made a development branch where you can make pull requests to: https://github.com/joowani/python-arango/tree/dev. Feel free to re-open this issue if you find any problems.

Thanks, Joohwan

Read more comments on GitHub >

github_iconTop Results From Across the Web

what it mean by verify error?
A "Verify Error" happens after the programmer has loaded your code into the PIC. It reads back the contents of memory and compares...
Read more >
Verification Error - Gathering Data Only to Support a Theory
A verification error is the process of trying to only look for observations that match preconceived ideas.
Read more >
How can I fix this Verify Error? - Stack Overflow
You are creating an array of arrays of Chunk objects where each Chunk gets initialized with put-together Strings and ints and all in...
Read more >
Unable To Verify Update Error Fix on iPhone & iPad - YouTube
A short tutorial on how to fix the “unable to verify update” error you are getting when trying to update your iPhone or...
Read more >
If you see 'Unable to Verify Update' when updating Apple Watch
Learn what to do if your Apple Watch says it can't verify your watchOS update because you're not connected to the Internet.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found