> Also at same time not sure if it hides bad JSON setting or other json related > behind. Should we fail totally in this case?
We would still get an error in that case [from here](https://github.com/apache/tinkerpop/blob/master/gremlin-dotnet/src/Gremlin.Net/Driver/Connection.cs#L136) where the `receivedMsg` is also accessed without a null check. If `receivedMsg` is `null` then `TryParseResponseMessage` will throw a `NullReferenceException` which will be caught by the try/catch in `Parse` and we notify the response handler about the exception. I think that we should however ensure that we're not getting an exception in a `catch` clause. [ Full content available at: https://github.com/apache/tinkerpop/pull/1247 ] This message was relayed via gitbox.apache.org for [email protected]
