-
Notifications
You must be signed in to change notification settings - Fork 20
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Gremlin server can not be started on local machine (in Docker) #8
Comments
@tisnik - so its an expected behavior. Gremlin-http takes some time to start before serving any requests. Data_importer depends on Gremlin-http. So after some time, when gremlin-http is up fully, data_importer is also started properly. Unfortunately, docker does not give the flexibility to wait until one container is ready to serve requests. They know this (docker/compose#374). We could have fixed this start-up all by ourselves with a script or in data_importer codebase itself, but sooner or later, data_importer will be part of selinon tasks, so thought against it. |
@miteshvp thank you very much for explanation. Do you think it is worth to mention this behaviour in the documentation (as an admonition, for example)? |
Yes, thats a good suggestion. Can you raise a PR for the same? |
@miteshvp yes I'll do it. Thanks! |
Fixed by #34 |
The text was updated successfully, but these errors were encountered: