You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by GitBox <gi...@apache.org> on 2022/07/04 22:18:14 UTC

[GitHub] [tinkerpop] kenhuuu opened a new pull request, #1747: Add documentation for gremlin-python event loop issue workarounds.

kenhuuu opened a new pull request, #1747:
URL: https://github.com/apache/tinkerpop/pull/1747

   Add documentation that explains how to workaround gremlin-python's need to use asyncio event loops for asynchronous applications that already have an event loop running. This issue has been reported multiple times (most recently in https://issues.apache.org/jira/browse/TINKERPOP-2755).


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [tinkerpop] krlawrence commented on pull request #1747: Add documentation for gremlin-python event loop issue workarounds.

Posted by GitBox <gi...@apache.org>.
krlawrence commented on PR #1747:
URL: https://github.com/apache/tinkerpop/pull/1747#issuecomment-1182616175

   Note that the Gremlin Python client already has this built in. You just need to provide a parameter when you create the transport.
   ```
   connection = DriverRemoteConnection(endpoint,'g',
                    transport_factory=lambda:AiohttpTransport(call_from_event_loop=True))
   ```
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [tinkerpop] bechbd merged pull request #1747: Add documentation for gremlin-python event loop issue workarounds.

Posted by GitBox <gi...@apache.org>.
bechbd merged PR #1747:
URL: https://github.com/apache/tinkerpop/pull/1747


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


[GitHub] [tinkerpop] codecov-commenter commented on pull request #1747: Add documentation for gremlin-python event loop issue workarounds.

Posted by GitBox <gi...@apache.org>.
codecov-commenter commented on PR #1747:
URL: https://github.com/apache/tinkerpop/pull/1747#issuecomment-1174435709

   # [Codecov](https://codecov.io/gh/apache/tinkerpop/pull/1747?src=pr&el=h1&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) Report
   > Merging [#1747](https://codecov.io/gh/apache/tinkerpop/pull/1747?src=pr&el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) (2855daf) into [3.5-dev](https://codecov.io/gh/apache/tinkerpop/commit/71f3ee0ab2fec3322b3a896222ad0ccbd6c0919c?el=desc&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation) (71f3ee0) will **not change** coverage.
   > The diff coverage is `n/a`.
   
   ```diff
   @@           Coverage Diff            @@
   ##           3.5-dev    #1747   +/-   ##
   ========================================
     Coverage    63.51%   63.51%           
   ========================================
     Files           23       23           
     Lines         3601     3601           
   ========================================
     Hits          2287     2287           
     Misses        1136     1136           
     Partials       178      178           
   ```
   
   
   
   ------
   
   [Continue to review full report at Codecov](https://codecov.io/gh/apache/tinkerpop/pull/1747?src=pr&el=continue&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation).
   > **Legend** - [Click here to learn more](https://docs.codecov.io/docs/codecov-delta?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation)
   > `Δ = absolute <relative> (impact)`, `ø = not affected`, `? = missing data`
   > Powered by [Codecov](https://codecov.io/gh/apache/tinkerpop/pull/1747?src=pr&el=footer&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation). Last update [40508a4...2855daf](https://codecov.io/gh/apache/tinkerpop/pull/1747?src=pr&el=lastupdated&utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation). Read the [comment docs](https://docs.codecov.io/docs/pull-request-comments?utm_medium=referral&utm_source=github&utm_content=comment&utm_campaign=pr+comments&utm_term=The+Apache+Software+Foundation).
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: commits-unsubscribe@tinkerpop.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org