Github user krlohnes commented on the issue:
https://github.com/apache/tinkerpop/pull/767
@robertdale `NoHttpResponseException` was the exception that I was getting
when I wrote the test and ran it locally (OSX). It seems to be a different
error in Docker. In Docker I get the `java.net.SocketException`, just like both
of you got.
I can change it so it only passes in Docker or I can change the test body
to something like.
```java
try {...}
catch(SocketException | NoHttpResponseException e){}
finally {...}
```
I prefer the `try...catch`, but I will defer to you and @spmallette on that.
---