You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by sp...@apache.org on 2021/04/20 19:26:19 UTC

[tinkerpop] branch master updated (1a99125 -> 847af50)

This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git.


    from 1a99125  Merge branch '3.4-dev'
     add 0cc611e  [1] Pushing current state which has working AIOHTTP transport layer.
     add f238ab2  [1] Updated transport library for test that was accidentally reverted.
     add e9edf7f  [1] Missed this file from last commit.
     add 92607d1  [1] Removed tornado [2] Added and plumbed in max_content_length
     add 5e691d6  [1] Finished removing tornado [2] Added changelog
     add 3faa9dc  [1] Documentation changes for gremlin-variants Tornado->AIOHTTP [2] Added info in the upgrade about AIOHTTP change
     add a42473a  [1] Added a couple extra comments to the asciidoc info
     add a786364  [1] Added nest_asyncio [2] Made test for functions called in the event loop
     add 3180083  [1] Made nest_asyncio usage optional based on init settings [2] Plumbed call_from_event_loop option through client and driver_remote_connection
     add a71d4aa  [1] Switched argument style to use kwargs so that the arguments passed can be redone without reworking the plumbing.
     add c62ae22  [1] Reduced the verbosity of the 403 message as it can sometimes include credentials.
     add c091e62  [1] Correcting merge conflict issue
     new 847af50  Merge branch 'pr-1416'

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 CHANGELOG.asciidoc                                 |   7 ++
 docs/src/reference/gremlin-variants.asciidoc       |  16 ++-
 docs/src/upgrade/release-3.5.x.asciidoc            |  14 ++-
 .../driver/{tornado => aiohttp}/__init__.py        |   4 +-
 .../gremlin_python/driver/aiohttp/transport.py     | 135 +++++++++++++++++++++
 .../main/python/gremlin_python/driver/client.py    |  19 +--
 .../driver/driver_remote_connection.py             |   5 +-
 .../gremlin_python/driver/tornado/transport.py     |  61 ----------
 .../main/python/gremlin_python/driver/transport.py |   3 +-
 gremlin-python/src/main/python/setup.py            |   5 +-
 gremlin-python/src/main/python/tests/conftest.py   |   8 +-
 .../src/main/python/tests/driver/test_client.py    |  51 +++++++-
 .../test_driver_remote_connection_threaded.py      |  22 ++++
 13 files changed, 256 insertions(+), 94 deletions(-)
 rename gremlin-python/src/main/python/gremlin_python/driver/{tornado => aiohttp}/__init__.py (99%)
 create mode 100644 gremlin-python/src/main/python/gremlin_python/driver/aiohttp/transport.py
 delete mode 100644 gremlin-python/src/main/python/gremlin_python/driver/tornado/transport.py

[tinkerpop] 01/01: Merge branch 'pr-1416'

Posted by sp...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

spmallette pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git

commit 847af5088f1b69155d49608ad5f090a2b4fc442e
Merge: 1a99125 c091e62
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Apr 20 15:25:51 2021 -0400

    Merge branch 'pr-1416'

 CHANGELOG.asciidoc                                 |   7 ++
 docs/src/reference/gremlin-variants.asciidoc       |  16 ++-
 docs/src/upgrade/release-3.5.x.asciidoc            |  14 ++-
 .../driver/{tornado => aiohttp}/__init__.py        |   4 +-
 .../gremlin_python/driver/aiohttp/transport.py     | 135 +++++++++++++++++++++
 .../main/python/gremlin_python/driver/client.py    |  19 +--
 .../driver/driver_remote_connection.py             |   5 +-
 .../gremlin_python/driver/tornado/transport.py     |  61 ----------
 .../main/python/gremlin_python/driver/transport.py |   3 +-
 gremlin-python/src/main/python/setup.py            |   5 +-
 gremlin-python/src/main/python/tests/conftest.py   |   8 +-
 .../src/main/python/tests/driver/test_client.py    |  51 +++++++-
 .../test_driver_remote_connection_threaded.py      |  22 ++++
 13 files changed, 256 insertions(+), 94 deletions(-)