verify gives error
See original GitHub issueWhenever I try to use .verify()
it gives error. But, on the other hand, I can do queries and all other stuff!
Issue Analytics
- State:
- Created 6 years ago
- Comments:9
Top 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 >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
@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 inDatabase
level. So if you are using a non-root user, you would end up having to do something like this:I will make the changes in the next release. For now, you can do a workaround something like this:
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
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