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


##########
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:
   i'd be in favor of removing that for the non-JVM stuff. it definitely would 
matter for Java where you could trigger a problem during the building of the 
traversal in the parse mechanism, but I think i'd rather have a reason for that 
happening in the non-JVM parsing. 



-- 
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