mikepersonick commented on code in PR #1929:
URL: https://github.com/apache/tinkerpop/pull/1929#discussion_r1063492048


##########
gremlin-dotnet/test/Gremlin.Net.IntegrationTest/Gherkin/CommonSteps.cs:
##########
@@ -131,9 +132,16 @@ public void TranslateTraversal(string traversalText)
             {
                 _g = _g.WithComputer();
             }
-            
-            _traversal =
-                Gremlin.UseTraversal(ScenarioData.CurrentScenario.Name, _g, 
_parameters);
+
+            try
+            {
+                _traversal =
+                    Gremlin.UseTraversal(ScenarioData.CurrentScenario.Name, 
_g, _parameters);
+            }
+            catch (Exception ex)
+            {
+                _error = ex;

Review Comment:
   Validation errors after parsing but before executing. maybe it doesn't 
matter for the language bindings though. I was hitting it when running the 
feature tests in Java.



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]

Reply via email to