Github user krlohnes commented on the issue:
https://github.com/apache/tinkerpop/pull/838
I picked up where #715 left off. I'm getting some errors around
```
Class is not registered:
org.apache.tinkerpop.gremlin.process.traversal.SearchAlgo
Note: To register this class use:
kryo.register(org.apache.tinkerpop.gremlin.process.traversal.SearchAlgo.class);
```
when I run the tests.
I'm not sure where I need to register that SearchAlgo enum, if someone
could point me in the right direction for that. I'm still working through
getting the tests running, but I wanted to get some feedback on this. It works
with `./bin/gremlin.sh` just fine, I think it's test configuration at this
point. I haven't implemented this for the computer algorithm yet either, so I
don't know if that will impact the test runs.
I wanted to get some feedback on this before pushing forward with figuring
out all of the tests.
@mpollmeier This is what I came up with since I last commented on your PR.
---