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 2023/01/10 11:32:14 UTC

[tinkerpop] branch master updated (60b2792d63 -> ff27f4cce1)

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 60b2792d63 TINKERPOP-2755 Removed use of cloudflare in website CTR
     new 43edc09667 Added extra assertions in tests CTR
     new 3c79c9f4c8 Merge branch '3.5-dev' into 3.6-dev
     new ff27f4cce1 Merge branch '3.6-dev'

The 3 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:
 gremlin-python/src/main/python/tests/driver/test_client.py | 9 +++++++++
 1 file changed, 9 insertions(+)


[tinkerpop] 03/03: Merge branch '3.6-dev'

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 ff27f4cce16b99069aeb23a15cf926d795694a35
Merge: 60b2792d63 3c79c9f4c8
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Jan 10 06:29:53 2023 -0500

    Merge branch '3.6-dev'

 gremlin-python/src/main/python/tests/driver/test_client.py | 9 +++++++++
 1 file changed, 9 insertions(+)


[tinkerpop] 01/03: Added extra assertions in tests CTR

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 43edc09667625f46f55d4163bac11e621b3262b1
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Jan 10 06:29:06 2023 -0500

    Added extra assertions in tests CTR
---
 gremlin-python/src/main/python/tests/driver/test_client.py | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/gremlin-python/src/main/python/tests/driver/test_client.py b/gremlin-python/src/main/python/tests/driver/test_client.py
index 63ab354be8..da3de65bae 100644
--- a/gremlin-python/src/main/python/tests/driver/test_client.py
+++ b/gremlin-python/src/main/python/tests/driver/test_client.py
@@ -87,6 +87,9 @@ def test_client_error(client):
         assert 'stackTrace' in ex.status_attributes
         assert str(ex) == f"{ex.status_code}: {ex.status_message}"
 
+    # still can submit after failure
+    assert client.submit('x + x', {'x': 2}).all().result()[0] == 4
+
 
 def test_client_connection_pool_after_error(client):
     # Overwrite fixture with pool_size=1 client
@@ -101,6 +104,9 @@ def test_client_connection_pool_after_error(client):
         assert gse.status_code == 597
         assert client.available_pool_size == 1
 
+    # still can submit after failure
+    assert client.submit('x + x', {'x': 2}).all().result()[0] == 4
+
 
 def test_client_side_timeout_set_for_aiohttp(client):
     client = Client(test_no_auth_url, 'gmodern',
@@ -114,6 +120,9 @@ def test_client_side_timeout_set_for_aiohttp(client):
         # asyncio TimeoutError has no message.
         assert str(err) == ""
 
+    # still can submit after failure
+    assert client.submit('x + x', {'x': 2}).all().result()[0] == 4
+
 
 async def async_connect(enable):
     try:


[tinkerpop] 02/03: Merge branch '3.5-dev' into 3.6-dev

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 3c79c9f4c897a0e303e096f82b4b1322cb47b445
Merge: 27dabb6a6a 43edc09667
Author: Stephen Mallette <st...@amazon.com>
AuthorDate: Tue Jan 10 06:29:38 2023 -0500

    Merge branch '3.5-dev' into 3.6-dev

 gremlin-python/src/main/python/tests/driver/test_client.py | 9 +++++++++
 1 file changed, 9 insertions(+)