Merge branch 'stable-5.0'

* stable-5.0:
  Fix wrong warning message in case of lock failures

Change-Id: Ia9b813652a2f5b6c78e9587367c35c3a6c177a7a
This commit is contained in:
Matthias Sohn 2018-08-17 01:24:10 +02:00
commit 7a536cef06
1 changed files with 1 additions and 1 deletions

View File

@ -389,7 +389,7 @@ public boolean createNewFile(File lock) throws IOException {
Integer nlink = (Integer) (Files.getAttribute(lockPath,
"unix:nlink")); //$NON-NLS-1$
if (nlink != 2) {
LOG.warn("nlink of link to lock file {0} was not 2 but {1}", //$NON-NLS-1$
LOG.warn("nlink of link to lock file {} was not 2 but {}", //$NON-NLS-1$
lock.getPath(), nlink);
return false;
}