HDFS-5800. Fix a typo in DFSClient.renewLease(). Contributed by Kousuke Saruta
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1559701 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4b0ae92c19
commit
602f71a8da
@ -775,6 +775,9 @@ Release 2.4.0 - UNRELEASED
|
||||
|
||||
HDFS-5777. Update LayoutVersion for the new editlog op OP_ADD_BLOCK. (jing9)
|
||||
|
||||
HDFS-5800. Fix a typo in DFSClient.renewLease(). (Kousuke Saruta
|
||||
via szetszwo)
|
||||
|
||||
BREAKDOWN OF HDFS-2832 SUBTASKS AND RELATED JIRAS
|
||||
|
||||
HDFS-4985. Add storage type to the protocol and expose it in block report
|
||||
|
@ -770,7 +770,7 @@ boolean renewLease() throws IOException {
|
||||
final long elapsed = Time.now() - getLastLeaseRenewal();
|
||||
if (elapsed > HdfsConstants.LEASE_HARDLIMIT_PERIOD) {
|
||||
LOG.warn("Failed to renew lease for " + clientName + " for "
|
||||
+ (elapsed/1000) + " seconds (>= soft-limit ="
|
||||
+ (elapsed/1000) + " seconds (>= hard-limit ="
|
||||
+ (HdfsConstants.LEASE_HARDLIMIT_PERIOD/1000) + " seconds.) "
|
||||
+ "Closing all files being written ...", e);
|
||||
closeAllFilesBeingWritten(true);
|
||||
|
Loading…
Reference in New Issue
Block a user