Merged branch 'jetty-9.4.x' into 'jetty-10.0.x'.

This commit is contained in:
Simone Bordet 2019-11-19 10:50:31 +01:00
commit 04dc257641
6 changed files with 10 additions and 8 deletions

6
Jenkinsfile vendored
View File

@ -11,7 +11,7 @@ pipeline {
agent { node { label 'linux' } }
options { timeout(time: 120, unit: 'MINUTES') }
steps {
mavenBuild("jdk11", "-Pmongodb install", "maven3", true) // -Pautobahn
mavenBuild("jdk11", "-Pmongodb clean install", "maven3", true) // -Pautobahn
// Collect up the jacoco execution results (only on main build)
jacoco inclusionPattern: '**/org/eclipse/jetty/**/*.class',
exclusionPattern: '' +
@ -44,7 +44,7 @@ pipeline {
agent { node { label 'linux' } }
steps {
timeout(time: 120, unit: 'MINUTES') {
mavenBuild("jdk13", "-Pmongodb install", "maven3", true)
mavenBuild("jdk13", "-Pmongodb clean install", "maven3", true)
warnings consoleParsers: [[parserName: 'Maven'], [parserName: 'Java']]
junit testResults: '**/target/surefire-reports/*.xml,**/target/invoker-reports/TEST*.xml'
}
@ -65,7 +65,7 @@ pipeline {
agent { node { label 'linux' } }
steps {
timeout(time: 30, unit: 'MINUTES') {
mavenBuild("jdk11", "install -f build-resources", "maven3", true)
mavenBuild("jdk11", "clean install -f build-resources", "maven3", true)
mavenBuild("jdk11", "install checkstyle:check -DskipTests", "maven3", true)
recordIssues(
enabledForFailure: true, aggregatingResults: true,

View File

@ -68,7 +68,7 @@ public abstract class AbstractConnectionPool implements ConnectionPool, Dumpable
}
@ManagedAttribute(value = "The number of pending connections", readonly = true)
public int getPendingCount()
public int getPendingConnectionCount()
{
return connections.getHi();
}

View File

@ -309,9 +309,10 @@ public class DuplexConnectionPool extends AbstractConnectionPool implements Swee
unlock();
}
return String.format("%s@%x[c=%d/%d,a=%d,i=%d]",
return String.format("%s@%x[c=%d/%d/%d,a=%d,i=%d]",
getClass().getSimpleName(),
hashCode(),
getPendingConnectionCount(),
getConnectionCount(),
getMaxConnectionCount(),
activeSize,

View File

@ -265,9 +265,10 @@ public class MultiplexConnectionPool extends AbstractConnectionPool implements C
activeSize = activeConnections.size();
idleSize = idleConnections.size();
}
return String.format("%s@%x[connections=%d/%d,multiplex=%d,active=%d,idle=%d]",
return String.format("%s@%x[connections=%d/%d/%d,multiplex=%d,active=%d,idle=%d]",
getClass().getSimpleName(),
hashCode(),
getPendingConnectionCount(),
getConnectionCount(),
getMaxConnectionCount(),
getMaxMultiplex(),

View File

@ -214,9 +214,10 @@ public class RoundRobinConnectionPool extends AbstractConnectionPool implements
}
}
}
return String.format("%s@%x[c=%d/%d,a=%d]",
return String.format("%s@%x[c=%d/%d/%d,a=%d]",
getClass().getSimpleName(),
hashCode(),
getPendingConnectionCount(),
present,
getMaxConnectionCount(),
active

View File

@ -100,7 +100,6 @@ public class ManagedAttributeListener implements ServletContextListener, Servlet
protected void updateBean(String name, Object oldBean, Object newBean)
{
LOG.info("update {} {}->{} on {}", name, oldBean, newBean, _context);
if (LOG.isDebugEnabled())
LOG.debug("update {} {}->{} on {}", name, oldBean, newBean, _context);
_context.updateBean(oldBean, newBean, false);