I'm trying to query my Amazon Neptune Database from a Lambda function that uses Python as the programming language.
My query is
g.V('1').out().toList()
After 10 seconds I get the error: "Task timed out after 10.01 seconds"
I tried to change the evaluationTimeout to a larger value, but it doesn't work
g.with_('evaluationTimeout',100000000000).V('1').out().toList()
Using the above query I still get the error "Task timed out after 10.01 seconds"
So how can I change it to have no timeout or a very large timeout?