-
Notifications
You must be signed in to change notification settings - Fork 21
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
goblin does not work with aiohttp>=3.0.0 #103
Comments
Well I found an aiogremlin/aiohttp incompatability that partially causes this. I'll be rolling it into the PR I've submitted over there. Now I am getting:
|
Turns out it was the aiogremlin problem and then the need for the special |
Yeah I kind of randomly made that repo for a guy a was working for, never really thought about it as docs. Maybe there should be a section in the official docs called "Using Goblin with JanusGraph", though unfortunately I don't have time to do it right now... |
@davebshow something like pull request #104 ? I basically regurgitated some of your comments from recent bugs and things I found in the janus-examples repo. If you point me at other information I can add it/reword/edit. |
Thanks @xzy3. I'll review your PR this week when I get a minute |
Related to davebshow/aiogremlin#15 something in the newest aiohttp breaks Goblin. In the following script
await session.flush()
never returns. There is no error in the database logs and by logging in with the gremlin shell I can see that vertexes are successfully created. I had to apply the change in davebshow/aiogremlin#16 to get that far. Downgrading toaiohttp==2.3.7
fixes the problem.gremlinpython 3.2.6
goblin 2.1.0
aiogremlin 3.2.6
janusgraph 0.2.0
aiohttp 3.1.0
The text was updated successfully, but these errors were encountered: