[GitHub] [tinkerpop] heljoyLiu commented on issue #1278: gremlin-python: add 'timeout' argument in client-submit

2020-04-20 Thread GitHub
> Just a comment, I think I have a Jira open on this somewhere but could not > find it in a quick search. It would be good if the Python client, and for > that matter any of the GLV clients exposed easy ways to set options like the > per query timeout. I get fairly regular feedback from

[GitHub] [tinkerpop] heljoyLiu commented on issue #1278: gremlin-python: add 'timeout' argument in client-submit

2020-04-20 Thread GitHub
> Just a comment, I think I have a Jira open on this somewhere but could not > find it in a quick search. It would be good if the Python client, and for > that matter any of the GLV clients exposed easy ways to set options like the > per query timeout. I get fairly regular feedback from

[GitHub] [tinkerpop] heljoyLiu commented on issue #1278: gremlin-python: add 'timeout' argument in client-submit

2020-04-19 Thread GitHub
we could build RequestMessage with timeout args ``` g = traversal().withGraph(Graph()) t = g.V().has("customer_id", 851401972585122).id() message = RequestMessage('traversal', 'bytecode', {'gremlin': t.bytecode, 'scriptEvaluationTimeout': 5L}) ``` so close it. sorry for disturb