You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Unfortunately at 71 characters DFS_CONTAINER_RATIS_STATEMACHINE_MAX_PENDING_APPLY_TRANSACTIONS_DEFAULT is too long for the 80-char limit even with static imports, so it has to be shortened. I figured that RATIS would be the least useful part, implied by STATEMACHINE, so I removed that.
The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0
mvndep
11
Maven dependency ordering for branch
+1
mvninstall
624
trunk passed
+1
compile
372
trunk passed
+1
checkstyle
69
trunk passed
+1
mvnsite
0
trunk passed
+1
shadedclient
878
branch has no errors when building and testing our client artifacts.
+1
javadoc
162
trunk passed
0
spotbugs
429
Used deprecated FindBugs config; considering switching to SpotBugs.
+1
findbugs
626
trunk passed
_ Patch Compile Tests _
0
mvndep
17
Maven dependency ordering for patch
+1
mvninstall
560
the patch passed
+1
compile
367
the patch passed
+1
javac
367
the patch passed
+1
checkstyle
36
hadoop-hdds: The patch generated 0 new + 0 unchanged - 1 fixed = 0 total (was 1)
+1
checkstyle
41
The patch passed checkstyle in hadoop-ozone
+1
mvnsite
0
the patch passed
+1
whitespace
0
The patch has no whitespace issues.
+1
shadedclient
669
patch has no errors when building and testing our client artifacts.
@adoroszlai Thanks for working on this! The patch looks good to me. The "RATIS" keyword in the config is very useful to find all ratis related configs in the ScmConfigKeys file. Can we rather replace TRANSACTIONS to TXNS if it sounds ok to you?
The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0
mvndep
16
Maven dependency ordering for branch
+1
mvninstall
587
trunk passed
+1
compile
367
trunk passed
+1
checkstyle
71
trunk passed
+1
mvnsite
0
trunk passed
+1
shadedclient
931
branch has no errors when building and testing our client artifacts.
+1
javadoc
164
trunk passed
0
spotbugs
433
Used deprecated FindBugs config; considering switching to SpotBugs.
+1
findbugs
628
trunk passed
_ Patch Compile Tests _
0
mvndep
20
Maven dependency ordering for patch
+1
mvninstall
554
the patch passed
+1
compile
371
the patch passed
+1
javac
371
the patch passed
+1
checkstyle
36
hadoop-hdds: The patch generated 0 new + 0 unchanged - 1 fixed = 0 total (was 1)
+1
checkstyle
39
The patch passed checkstyle in hadoop-ozone
+1
mvnsite
0
the patch passed
+1
whitespace
0
The patch has no whitespace issues.
+1
shadedclient
715
patch has no errors when building and testing our client artifacts.
The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0
mvndep
36
Maven dependency ordering for branch
+1
mvninstall
812
trunk passed
+1
compile
442
trunk passed
+1
checkstyle
95
trunk passed
+1
mvnsite
0
trunk passed
+1
shadedclient
1138
branch has no errors when building and testing our client artifacts.
+1
javadoc
233
trunk passed
0
spotbugs
547
Used deprecated FindBugs config; considering switching to SpotBugs.
+1
findbugs
824
trunk passed
_ Patch Compile Tests _
0
mvndep
21
Maven dependency ordering for patch
+1
mvninstall
586
the patch passed
+1
compile
402
the patch passed
+1
javac
402
the patch passed
+1
checkstyle
34
hadoop-hdds: The patch generated 0 new + 0 unchanged - 1 fixed = 0 total (was 1)
+1
checkstyle
38
The patch passed checkstyle in hadoop-ozone
+1
mvnsite
0
the patch passed
+1
whitespace
0
The patch has no whitespace issues.
+1
shadedclient
760
patch has no errors when building and testing our client artifacts.
-1
javadoc
73
hadoop-hdds generated 2 new + 16 unchanged - 0 fixed = 18 total (was 16)
The patch doesn't appear to include any new or modified tests. Please justify why no new tests are needed for this patch. Also please list what manual steps were performed to verify this patch.
_ trunk Compile Tests _
0
mvndep
26
Maven dependency ordering for branch
+1
mvninstall
678
trunk passed
+1
compile
380
trunk passed
+1
checkstyle
65
trunk passed
+1
mvnsite
0
trunk passed
+1
shadedclient
846
branch has no errors when building and testing our client artifacts.
+1
javadoc
157
trunk passed
0
spotbugs
459
Used deprecated FindBugs config; considering switching to SpotBugs.
+1
findbugs
673
trunk passed
_ Patch Compile Tests _
0
mvndep
16
Maven dependency ordering for patch
+1
mvninstall
579
the patch passed
+1
compile
395
the patch passed
+1
javac
395
the patch passed
+1
checkstyle
32
hadoop-hdds: The patch generated 0 new + 0 unchanged - 1 fixed = 0 total (was 1)
+1
checkstyle
37
The patch passed checkstyle in hadoop-ozone
+1
mvnsite
0
the patch passed
+1
whitespace
0
The patch has no whitespace issues.
+1
shadedclient
678
patch has no errors when building and testing our client artifacts.
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What changes were proposed in this pull request?
Fix checkstyle error due to too long line.
Unfortunately at 71 characters
DFS_CONTAINER_RATIS_STATEMACHINE_MAX_PENDING_APPLY_TRANSACTIONS_DEFAULT
is too long for the 80-char limit even with static imports, so it has to be shortened. I figured thatRATIS
would be the least useful part, implied bySTATEMACHINE
, so I removed that.https://issues.apache.org/jira/browse/HDDS-1878
How was this patch tested?