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
Copy file name to clipboardExpand all lines: hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/web/ozShell/bucket/AddAclBucketHandler.java
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -92,8 +92,7 @@ public Void call() throws Exception {
Copy file name to clipboardExpand all lines: hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/web/ozShell/bucket/RemoveAclBucketHandler.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ public class RemoveAclBucketHandler extends Handler {
68
68
*/
69
69
@Override
70
70
publicVoidcall() throwsException {
71
-
Objects.requireNonNull(acl, "New acl to be added not specified.");
71
+
Objects.requireNonNull(acl, "ACL to be removed not specified.");
Copy file name to clipboardExpand all lines: hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/web/ozShell/bucket/SetAclBucketHandler.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -92,8 +92,8 @@ public Void call() throws Exception {
Copy file name to clipboardExpand all lines: hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/web/ozShell/keys/RemoveAclKeyHandler.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ public class RemoveAclKeyHandler extends Handler {
68
68
*/
69
69
@Override
70
70
publicVoidcall() throwsException {
71
-
Objects.requireNonNull(acl, "New acl to be added not specified.");
71
+
Objects.requireNonNull(acl, "ACL to be removed not specified.");
Copy file name to clipboardExpand all lines: hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/web/ozShell/volume/AddAclVolumeHandler.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -89,8 +89,8 @@ public Void call() throws Exception {
Copy file name to clipboardExpand all lines: hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/web/ozShell/volume/RemoveAclVolumeHandler.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ public class RemoveAclVolumeHandler extends Handler {
68
68
*/
69
69
@Override
70
70
publicVoidcall() throwsException {
71
-
Objects.requireNonNull(acl, "New acl to be added not specified.");
71
+
Objects.requireNonNull(acl, "ACL to be removed not specified.");
Copy file name to clipboardExpand all lines: hadoop-ozone/ozone-manager/src/main/java/org/apache/hadoop/ozone/web/ozShell/volume/SetAclVolumeHandler.java
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -92,8 +92,8 @@ public Void call() throws Exception {
0 commit comments