Skip to content

Commit 894da1d

Browse files
committed
Resolving checkstyle issue
1 parent d9b7429 commit 894da1d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

hadoop-hdds/common/src/main/resources/ozone-default.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -440,7 +440,7 @@
440440
<value>0ms</value>
441441
<tag>OZONE, CLIENT</tag>
442442
<description>Indicates the time duration a client will wait before
443-
retrying a write key request on encountering an exception. Be default
443+
retrying a write key request on encountering an exception. By default
444444
there is no wait.
445445
</description>
446446
</property>

hadoop-ozone/client/src/main/java/org/apache/hadoop/ozone/client/io/KeyOutputStream.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -817,8 +817,8 @@ public Builder setMaxRetryCount(int maxCount) {
817817
return this;
818818
}
819819

820-
public Builder setRetryInterval(long retryInterval) {
821-
this.retryInterval = retryInterval;
820+
public Builder setRetryInterval(long retryIntervalInMS) {
821+
this.retryInterval = retryIntervalInMS;
822822
return this;
823823
}
824824

0 commit comments

Comments
 (0)