-
Notifications
You must be signed in to change notification settings - Fork 85
Conversation
|
18e77fc
to
1c65fdc
Compare
Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com>
Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com>
Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com>
Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com>
1c65fdc
to
8f5495b
Compare
I am doing my development (mostly) on Windows 10. When I did anything with a text file it would replace the LF with CRLF which causes some problems for docker. To prevent this I added the |
Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com>
4651178
to
67fd9b4
Compare
I do not see how to update my User ID in the previous commits. |
Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com> commit with LF enforced and 0.5 version updated Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com> allow serialization of sub-graphs between server an client Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com> some docker utilities have issues with crlf line endings Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com>
…remote-subgraph-traversal Signed-off-by: Fred Eisele <fredrick.eisele@gmail.com>
fe44e4e
to
3cb6225
Compare
Weasel verifies that all files have a license header but license headers don't make sense for some files to they can be excluded from this check in the
Please just squash your commits into a single one. While doing that, git should use your current config and therefore set the user ID correctly. We prefer to have a single commit per contribution anyway to have a clean commit history. If you need help with squashing your commits, the easiest option in my opinion looks like this: git reset --soft HEAD~8
git commit -s
git push --force This resets the last 8 commits while keeping their changes and then commits them again with a single commit. That commit is afterwards force pushed which will overwrite the existing 8 commits on your remote branch. The |
JanusGraph Server now configures the serializers automatically if no config is set in its config YAML: which is why the Docker images also don't configure the serializers any more. In general, this is not really an issue with the Docker image, but for JanusGraph in general and we also already have an open issue for that: JanusGraph/janusgraph#2843. So, I'm closing this PR. |
The ability to return subgraphs is not possible because the TinkerIoRegistryV3d0 is not included in the gremlin-server.yaml.
As was pointed out by @mkaisercross a similar behavior can be achieved with environment parameters.
The question is whether subgraph serialization should be allowed by default or not.