mirror of https://github.com/apache/archiva.git
remove use of deprecated class
git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1439691 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8278565871
commit
71b7c89c8e
|
@ -33,6 +33,7 @@ import org.apache.archiva.configuration.Configuration;
|
|||
import org.apache.archiva.configuration.UserInterfaceOptions;
|
||||
import org.apache.archiva.configuration.WebappConfiguration;
|
||||
import org.apache.commons.lang.StringUtils;
|
||||
import org.apache.http.impl.conn.PoolingClientConnectionManager;
|
||||
import org.apache.http.impl.conn.tsccm.ThreadSafeClientConnManager;
|
||||
import org.apache.maven.wagon.providers.http.HttpWagon;
|
||||
import org.springframework.stereotype.Service;
|
||||
|
@ -380,19 +381,19 @@ public class DefaultArchivaAdministration
|
|||
{
|
||||
// back to default values
|
||||
HttpWagon.setUseClientManagerPooled( true );
|
||||
ThreadSafeClientConnManager threadSafeClientConnManager = new ThreadSafeClientConnManager();
|
||||
threadSafeClientConnManager.setDefaultMaxPerRoute( 30 );
|
||||
threadSafeClientConnManager.setMaxTotal( 30 );
|
||||
HttpWagon.setConnectionManagerPooled( threadSafeClientConnManager );
|
||||
PoolingClientConnectionManager poolingClientConnectionManager = new PoolingClientConnectionManager();
|
||||
poolingClientConnectionManager.setDefaultMaxPerRoute( 30 );
|
||||
poolingClientConnectionManager.setMaxTotal( 30 );
|
||||
HttpWagon.setConnectionManagerPooled( poolingClientConnectionManager );
|
||||
|
||||
}
|
||||
else
|
||||
{
|
||||
HttpWagon.setUseClientManagerPooled( networkConfiguration.isUsePooling() );
|
||||
ThreadSafeClientConnManager threadSafeClientConnManager = new ThreadSafeClientConnManager();
|
||||
threadSafeClientConnManager.setDefaultMaxPerRoute( networkConfiguration.getMaxTotalPerHost() );
|
||||
threadSafeClientConnManager.setMaxTotal( networkConfiguration.getMaxTotal() );
|
||||
HttpWagon.setConnectionManagerPooled( threadSafeClientConnManager );
|
||||
PoolingClientConnectionManager poolingClientConnectionManager = new PoolingClientConnectionManager();
|
||||
poolingClientConnectionManager.setDefaultMaxPerRoute( networkConfiguration.getMaxTotalPerHost() );
|
||||
poolingClientConnectionManager.setMaxTotal( networkConfiguration.getMaxTotal() );
|
||||
HttpWagon.setConnectionManagerPooled( poolingClientConnectionManager );
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue