HBASE-27729. Missed one parameter when logging exception in StoreFileListFile. (#5114)
Signed-off-by: Viraj Jasani <vjasani@apache.org>
Signed-off-by: Duo Zhang <zhangduo@apache.org>
(cherry picked from commit 3c2c685892
)
This commit is contained in:
parent
620ab79b59
commit
e68d0cf159
|
@ -163,7 +163,8 @@ class StoreFileListFile {
|
||||||
} catch (IOException e) {
|
} catch (IOException e) {
|
||||||
// we will create new file with overwrite = true, so not a big deal here, only for speed up
|
// we will create new file with overwrite = true, so not a big deal here, only for speed up
|
||||||
// loading as we do not need to read this file when loading
|
// loading as we do not need to read this file when loading
|
||||||
LOG.debug("Failed to delete old track file {}, ignoring the exception", e);
|
LOG.debug("Failed to delete old track file {}, ignoring the exception",
|
||||||
|
trackFiles[nextTrackFile], e);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue