You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by or...@apache.org on 2017/11/01 16:41:06 UTC

[1/2] qpid-broker-j git commit: QPID-8002:[Broker-J][REST] Increase sasl exchange expiry interval

Repository: qpid-broker-j
Updated Branches:
  refs/heads/master d8d03ebf3 -> b159ab3be


QPID-8002:[Broker-J][REST] Increase sasl exchange expiry interval


Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/19ef66df
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/19ef66df
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/19ef66df

Branch: refs/heads/master
Commit: 19ef66dfc6ee3037fb836076bfdadfec39ee3f31
Parents: d8d03eb
Author: Alex Rudyy <or...@apache.org>
Authored: Wed Nov 1 16:31:27 2017 +0000
Committer: Alex Rudyy <or...@apache.org>
Committed: Wed Nov 1 16:31:27 2017 +0000

----------------------------------------------------------------------
 .../qpid/server/management/plugin/HttpManagementConfiguration.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/19ef66df/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagementConfiguration.java
----------------------------------------------------------------------
diff --git a/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagementConfiguration.java b/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagementConfiguration.java
index 25cd9f4..a5aadae 100644
--- a/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagementConfiguration.java
+++ b/broker-plugins/management-http/src/main/java/org/apache/qpid/server/management/plugin/HttpManagementConfiguration.java
@@ -83,7 +83,7 @@ public interface HttpManagementConfiguration<X extends HttpManagementConfigurati
     String SASL_EXCHANGE_EXPIRY_CONTEXT_NAME = "qpid.httpManagement.saslExchangeExpiry";
     @SuppressWarnings("unused")
     @ManagedContextDefault( name = SASL_EXCHANGE_EXPIRY_CONTEXT_NAME)
-    long DEFAULT_SASL_EXCHANGE_EXPIRY = 3000L;
+    long DEFAULT_SASL_EXCHANGE_EXPIRY = 60000L;
 
     AuthenticationProvider getAuthenticationProvider(HttpServletRequest request);
     Port<?> getPort(HttpServletRequest request);


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org


[2/2] qpid-broker-j git commit: QPID-8003:[Broker-J] Use log level 'info' to report conditions when no new rolled over log file is detected by the file logger

Posted by or...@apache.org.
QPID-8003:[Broker-J] Use log level 'info' to report conditions when no new rolled over log file is detected by the file logger


Project: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/commit/b159ab3b
Tree: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/tree/b159ab3b
Diff: http://git-wip-us.apache.org/repos/asf/qpid-broker-j/diff/b159ab3b

Branch: refs/heads/master
Commit: b159ab3be6637450d9003a829f8622d0304b3849
Parents: 19ef66d
Author: Alex Rudyy <or...@apache.org>
Authored: Wed Nov 1 16:38:15 2017 +0000
Committer: Alex Rudyy <or...@apache.org>
Committed: Wed Nov 1 16:38:15 2017 +0000

----------------------------------------------------------------------
 .../org/apache/qpid/server/logging/logback/RolloverWatcher.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-broker-j/blob/b159ab3b/broker-plugins/logging-logback/src/main/java/org/apache/qpid/server/logging/logback/RolloverWatcher.java
----------------------------------------------------------------------
diff --git a/broker-plugins/logging-logback/src/main/java/org/apache/qpid/server/logging/logback/RolloverWatcher.java b/broker-plugins/logging-logback/src/main/java/org/apache/qpid/server/logging/logback/RolloverWatcher.java
index e6c2ac5..82f385f 100644
--- a/broker-plugins/logging-logback/src/main/java/org/apache/qpid/server/logging/logback/RolloverWatcher.java
+++ b/broker-plugins/logging-logback/src/main/java/org/apache/qpid/server/logging/logback/RolloverWatcher.java
@@ -75,7 +75,7 @@ public class RolloverWatcher implements RollingPolicyDecorator.RolloverListener
         {
             _baseFolder = baseFolder;
         }
-        LOGGER.warn("Exceeded maximum number of rescans without detecting rolled over log file.");
+        LOGGER.info("Exceeded maximum number of rescans without detecting rolled over log file.");
     }
 
     public PathContent getFileContent(String fileName)


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org