skip locking true per default

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1550644 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2013-12-13 05:04:27 +00:00
parent e1c3663b01
commit 76d1127f8b
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ public class DefaultFileLockManager
// only read could be a more simple lock and acquire a write lock means waiting the end of all reading threads
private static final ConcurrentMap<File, Lock> lockFiles = new ConcurrentHashMap<File, Lock>( 64 );
private boolean skipLocking = false;
private boolean skipLocking = true;
private Logger log = LoggerFactory.getLogger( getClass() );