You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tinkerpop.apache.org by di...@apache.org on 2020/08/28 21:23:09 UTC

[tinkerpop] branch 3.4-dev updated: Set Logger to INFO for shouldBlockAdditionalRequestsDuringClose test

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

divijv pushed a commit to branch 3.4-dev
in repository https://gitbox.apache.org/repos/asf/tinkerpop.git


The following commit(s) were added to refs/heads/3.4-dev by this push:
     new f6208b1  Set Logger to INFO for shouldBlockAdditionalRequestsDuringClose test
f6208b1 is described below

commit f6208b148b4202d68ddf5d6565d90c1f6f31ff61
Author: Divij Vaidya <di...@amazon.com>
AuthorDate: Fri Aug 28 14:22:57 2020 -0700

    Set Logger to INFO for shouldBlockAdditionalRequestsDuringClose test
    
    This test asserts an INFO level log, hence, the test should be run with INFO Level logs. CTR since it is a minor change in tests without any change in behaviour.
---
 .../tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java      | 1 +
 1 file changed, 1 insertion(+)

diff --git a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
index d0d222c..ddf39d3 100644
--- a/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
+++ b/gremlin-server/src/test/java/org/apache/tinkerpop/gremlin/server/GremlinServerSessionIntegrateTest.java
@@ -70,6 +70,7 @@ public class GremlinServerSessionIntegrateTest extends AbstractGremlinServerInte
         switch (nameOfTest) {
             case "shouldCloseSessionOnceOnRequest":
             case "shouldHaveTheSessionTimeout":
+            case "shouldBlockAdditionalRequestsDuringClose":
             case "shouldBlockAdditionalRequestsDuringForceClose":
                 Logger.getRootLogger().setLevel(Level.INFO);
                 break;