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

kenhuuu pushed a change to branch master-http-profiling
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


 discard 1037f30ee9 test http compression
 discard 45de8aa2ed Update profiling app
 discard f80bfb5e02 Update profiling with latency test
     add f7a4cca63d Python driver basic connectivity to HTTP server (#2657)
     add 0e2461edc3 Add support for HTTP content compression.
     new f31b98c827 Update profiling with latency test
     new 87b369f11c Updates to match master

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (1037f30ee9)
            \
             N -- N -- N   refs/heads/master-http-profiling (87b369f11c)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 2 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:
 .../tinkerpop/gremlin/driver/Channelizer.java      |   9 +-
 .../handler/HttpContentDecompressionHandler.java   | 103 +++++++
 .../driver/handler/HttpGremlinRequestEncoder.java  |   2 +
 .../handler/HttpGremlinResponseStreamDecoder.java  |  10 -
 .../gremlin/driver/util/ProfilingApplication.java  |  16 +-
 .../HttpContentDecompressionHandlerTest.java       | 222 ++++++++++++++
 .../gremlin_python/driver/aiohttp/transport.py     |  11 +-
 .../main/python/gremlin_python/driver/client.py    |  25 +-
 .../python/gremlin_python/driver/connection.py     |  18 +-
 .../main/python/gremlin_python/driver/protocol.py  |  29 +-
 .../main/python/gremlin_python/driver/request.py   |   5 +-
 .../main/python/gremlin_python/driver/resultset.py |  16 +-
 .../python/gremlin_python/driver/serializer.py     | 101 +++++++
 .../gremlin_python/structure/io/graphbinaryV1.py   |   1 +
 .../io/{graphbinaryV1.py => graphbinaryV4.py}      |  20 +-
 .../gremlin_python/structure/io/graphsonV2d0.py    |   1 +
 .../gremlin_python/structure/io/graphsonV3d0.py    |   1 +
 .../python/gremlin_python/structure/io/util.py     |  38 +++
 gremlin-python/src/main/python/tests/conftest.py   | 120 ++++++--
 .../src/main/python/tests/driver/test_client.py    | 330 ++++++++++-----------
 .../tests/driver/test_driver_remote_connection.py  |   4 +
 .../driver/test_driver_remote_connection_http.py   |  36 +--
 .../test_driver_remote_connection_threaded.py      |  18 +-
 .../main/python/tests/driver/test_serializer.py    |  28 +-
 .../driver/test_web_socket_client_behavior.py      |   4 +
 .../tests/structure/io/test_functionalityio.py     | 115 ++++---
 .../tests/structure/io/test_graphbinaryV1.py       |   7 +-
 ...test_graphbinaryV1.py => test_graphbinaryV4.py} |  14 +-
 .../python/tests/structure/io/test_graphsonV2d0.py |   1 +
 .../python/tests/structure/io/test_graphsonV3d0.py |   1 +
 gremlin-server/conf/gremlin-server-modern.yaml     |  10 +-
 .../gremlin/server/channel/HttpChannelizer.java    |   3 +
 .../handler/HttpContentCompressionHandler.java     |  89 ++++++
 .../server/handler/HttpGremlinEndpointHandler.java |  37 +--
 .../server/handler/HttpRequestMessageDecoder.java  |   2 +
 .../tinkerpop/gremlin/server/handler/StateKey.java |   6 +
 .../server/GremlinServerHttpIntegrateTest.java     |  14 +-
 .../handler/HttpContentCompressionHandlerTest.java | 208 +++++++++++++
 38 files changed, 1257 insertions(+), 418 deletions(-)
 create mode 100644 
gremlin-driver/src/main/java/org/apache/tinkerpop/gremlin/driver/handler/HttpContentDecompressionHandler.java
 create mode 100644 
gremlin-driver/src/test/java/org/apache/tinkerpop/gremlin/driver/handler/HttpContentDecompressionHandlerTest.java
 copy 
gremlin-python/src/main/python/gremlin_python/structure/io/{graphbinaryV1.py => 
graphbinaryV4.py} (98%)
 copy gremlin-python/src/main/python/tests/structure/io/{test_graphbinaryV1.py 
=> test_graphbinaryV4.py} (96%)
 create mode 100644 
gremlin-server/src/main/java/org/apache/tinkerpop/gremlin/server/handler/HttpContentCompressionHandler.java
 create mode 100644 
gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/handler/HttpContentCompressionHandlerTest.java

Reply via email to