Author: veithen Date: Fri Nov 13 22:18:07 2009 New Revision: 836022 URL: http://svn.apache.org/viewvc?rev=836022&view=rev Log: Mark the changes in r832297 and r835750 as what they are, namely workarounds for AXIS2-4552.
Modified: webservices/commons/trunk/modules/transport/modules/base/src/main/java/org/apache/axis2/transport/base/AbstractTransportListener.java Modified: webservices/commons/trunk/modules/transport/modules/base/src/main/java/org/apache/axis2/transport/base/AbstractTransportListener.java URL: http://svn.apache.org/viewvc/webservices/commons/trunk/modules/transport/modules/base/src/main/java/org/apache/axis2/transport/base/AbstractTransportListener.java?rev=836022&r1=836021&r2=836022&view=diff ============================================================================== --- webservices/commons/trunk/modules/transport/modules/base/src/main/java/org/apache/axis2/transport/base/AbstractTransportListener.java (original) +++ webservices/commons/trunk/modules/transport/modules/base/src/main/java/org/apache/axis2/transport/base/AbstractTransportListener.java Fri Nov 13 22:18:07 2009 @@ -100,7 +100,7 @@ //this.workerPool = cfgCtx.getThreadPool(); not yet implemented throw new AxisFault("Unsupported thread pool for task execution - Axis2 thread pool"); } else { - if (this.workerPool == null) { + if (this.workerPool == null) { // FIXME <-- workaround for AXIS2-4552 this.workerPool = WorkerPoolFactory.getWorkerPool( config.getServerCoreThreads(), config.getServerMaxThreads(), @@ -132,7 +132,7 @@ }); // register with JMX - if (mbeanSupport == null) { + if (mbeanSupport == null) { // FIXME <-- workaround for AXIS2-4552 mbeanSupport = new TransportMBeanSupport(this, getTransportName()); mbeanSupport.register(); }