You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@ozone.apache.org by GitBox <gi...@apache.org> on 2021/08/02 04:47:54 UTC

[GitHub] [ozone] zhengchenyu opened a new pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

zhengchenyu opened a new pull request #2466:
URL: https://github.com/apache/ozone/pull/2466


   This issue aims to fix the incorrect usage of UGI's getUserName in secure mode.
   In my test and search code, I Found we couldn't list volume accurately in secure mode.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] jojochuang commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
jojochuang commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-890671324


   @bharatviswa504  FYI we should review the getShortUserName usage in s3g.
   
   benchmark -- it's going to be valuable to be able to benchmark in secure mode in the future. But let's do that in a separate jira.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-890353178


   @jojochuang Yeah, I check it except s3 (I don't know the usage about s3). I also found some wrong usage about ACL,  but it doesn't mater, Because acl check both getUserName and getShortUserName. 
   I only correct the code which will faill the unit test. If you think we need to correct all wrong usage, I will do it.
   Here are all wrong usage:
   
   | wrong usage function| description |
   | --- | ---|
   |  ObjectStore.listVolumesByUser      |   fixed in this PR  |
   |  RpcClient.createVolume                   |   fixed in this PR  |
   | OzoneAclUtil.checkAclRights            |  fixed in this PR   |
   | RpcClient.getAclList                           |  usage for set default acl. Becuase this acl user is owner. So it doesn't matter |
   | OmKeyGenerator.createKey              |  usage for set default acl. Becuase this acl user is owner. So it doesn't matter |
   | s3                                                         | I don't know the usage about s3, so I do not correct it. |
   | BenchMark                                          | I think there is no need to set security mode when benchmark before, so I don't correct it. |


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] jojochuang commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
jojochuang commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-890489408


   From a quick peek the failure might be related to the check change. I am trigger a rebuild to verify


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] jojochuang commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
jojochuang commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-893959706


   our tests have been quite flaky these days.  i retriggered the build. 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu closed pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu closed pull request #2466:
URL: https://github.com/apache/ozone/pull/2466


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu edited a comment on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu edited a comment on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-894113378


   > @zhengchenyu failure in _acceptance (secure)_ seems related to this change. Can you please check?
   > 
   > ```
   > Can follow link with read access                                      | FAIL |
   > 'PERMISSION_DENIED User testuser2/scm@EXAMPLE.COM doesn't have READ permission to access volume 71945-target null null' does not contain 'key-in-readable-bucket'
   > ```
   
   Yes, I found it. the setup of test like below:
   
   ```
       Execute             ozone sh volume addacl --acl user:testuser2/scm@EXAMPLE.COM:r ${target}
       Execute             ozone sh volume addacl --acl user:testuser2/scm@EXAMPLE.COM:rl ${source}
       Execute             ozone sh bucket addacl --acl user:testuser2/scm@EXAMPLE.COM:rl ${source}/readable-bucket
       Execute             ozone sh bucket addacl --acl user:testuser2/scm@EXAMPLE.COM:r ${target}/readable-link
       Execute             ozone sh bucket addacl --acl user:testuser2/scm@EXAMPLE.COM:r ${target}/link-to-unreadable-bucket
   ```
   
   I think it is reasonable that set acl with testuser2. But if someone set acl with testuser2/scm@EXAMPLE.COM, I think we need make sure that this setting is only for testuser2/scm@EXAMPLE.COM, but not for testuser2 in other host. 
   
   I have fix it, Let's wait to check.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu closed pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu closed pull request #2466:
URL: https://github.com/apache/ozone/pull/2466


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-894806439


   Still run failed. error like below:
   ```
   List root                                                             | FAIL |
   Parent suite setup failed:
   '{
     "metadata" : { },
     "name" : "27000-source",
     "admin" : "root",
     "owner" : "root",
     "quotaInBytes" : -1,
     "quotaInNamespace" : -1,
     "usedNamespace" : 3,
     "creationTime" : "2021-08-06T09:11:43.411Z",
     "modificationTime" : "2021-08-06T09:12:18.682Z",
     "acls" : [ {
       "type" : "USER",
       "name" : "root",
       "aclScope" : "ACCESS",
       "aclList" : [ "ALL" ]
     }, {
       "type" : "GROUP",
       "name" : "root",
       "aclScope" : "ACCESS",
       "aclList" : [ "ALL" ]
       [ Message content over the limit has been removed. ]
     "name" : "vol-kaart",
     "admin" : "root",
     "owner" : "root",
     "quotaInBytes" : -1,
     "quotaInNamespace" : -1,
     "usedNamespace" : 1,
     "creationTime" : "2021-08-06T09:29:29.277Z",
     "modificationTime" : "2021-08-06T09:29:29.277Z",
     "acls" : [ {
       "type" : "USER",
       "name" : "root",
       "aclScope" : "ACCESS",
       "aclList" : [ "ALL" ]
     }, {
       "type" : "GROUP",
       "name" : "root",
       "aclScope" : "ACCESS",
       "aclList" : [ "ALL" ]
     } ]
   }' does not match '"admin" : "(hadoop|testuser/scm[^@]*@EXAMPLE.COM)"'
   ```
   
   I think here admin should be testuser, but not testuser/scm@EXAMPLE.COM. 
   But I don't know why admin and owner is root. Can you tell me where is the setting of "acceptance (secure)", then I will set the integeration test in my pc. @adoroszlai @jojochuang 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu closed pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu closed pull request #2466:
URL: https://github.com/apache/ozone/pull/2466


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu closed pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu closed pull request #2466:
URL: https://github.com/apache/ozone/pull/2466


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] adoroszlai commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
adoroszlai commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-894842660


   @zhengchenyu If you run _acceptance (secure)_ check locally as
   
   ```
   cd hadoop-ozone/dist/target/ozone-1.2.0-SNAPSHOT/compose/ozonesecure
   KEEP_RUNNING=true ./test.sh
   ```
   
   the docker cluster will be kept alive and you can investigate the problem.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu closed pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu closed pull request #2466:
URL: https://github.com/apache/ozone/pull/2466


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu edited a comment on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu edited a comment on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-894806439


   Still run failed. error like below:
   ```
   List root                                                             | FAIL |
   Parent suite setup failed:
   '{
     "metadata" : { },
     "name" : "27000-source",
     "admin" : "root",
     "owner" : "root",
     "quotaInBytes" : -1,
     "quotaInNamespace" : -1,
     "usedNamespace" : 3,
     "creationTime" : "2021-08-06T09:11:43.411Z",
     "modificationTime" : "2021-08-06T09:12:18.682Z",
     "acls" : [ {
       "type" : "USER",
       "name" : "root",
       "aclScope" : "ACCESS",
       "aclList" : [ "ALL" ]
     }, {
       "type" : "GROUP",
       "name" : "root",
       "aclScope" : "ACCESS",
       "aclList" : [ "ALL" ]
       [ Message content over the limit has been removed. ]
     "name" : "vol-kaart",
     "admin" : "root",
     "owner" : "root",
     "quotaInBytes" : -1,
     "quotaInNamespace" : -1,
     "usedNamespace" : 1,
     "creationTime" : "2021-08-06T09:29:29.277Z",
     "modificationTime" : "2021-08-06T09:29:29.277Z",
     "acls" : [ {
       "type" : "USER",
       "name" : "root",
       "aclScope" : "ACCESS",
       "aclList" : [ "ALL" ]
     }, {
       "type" : "GROUP",
       "name" : "root",
       "aclScope" : "ACCESS",
       "aclList" : [ "ALL" ]
     } ]
   }' does not match '"admin" : "(hadoop|testuser/scm[^@]*@EXAMPLE.COM)"'
   ```
   
   I think here admin should be testuser, but not testuser/scm@EXAMPLE.COM. 
   But I don't know why admin and owner is root in this test. Can you tell me where is the setting of "acceptance (secure)", then I will set the integeration test in my pc. @adoroszlai @jojochuang 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-901549584


   @jojochuang @adoroszlai can you help reiview this? I have rebase all commit to f70217fa5a89194a54f94c62a0b55baada09d68b.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] jojochuang commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
jojochuang commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-890704038


   i don't have the privilege to reopen the PR. Could you follow this instruction to reopen? https://gist.github.com/robertpainsi/2c42c15f1ce6dab03a0675348edd4e2c


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-896636238


   @adoroszlai 
   I found this config, and the ugi.getShortUserName was replace with root. 
   ```
   CORE-SITE.XML_hadoop.security.auth_to_local=RULE:[2:$1](testuser2.*) RULE:[2:$1@$0](.*)s/.*/root/
   ```
   I don't know why use this config, I can't find the init commit, this is too old. 
   
   In CreateVolumeHandler.java, I changed code. Because I think owner and admin should be shortUserName, but not fullUserName. But the shortUserName was replace with root.
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-894113378


   > @zhengchenyu failure in _acceptance (secure)_ seems related to this change. Can you please check?
   > 
   > ```
   > Can follow link with read access                                      | FAIL |
   > 'PERMISSION_DENIED User testuser2/scm@EXAMPLE.COM doesn't have READ permission to access volume 71945-target null null' does not contain 'key-in-readable-bucket'
   > ```
   
   Yes, I found it. the setup of test like below:
   
   ```
       Execute             ozone sh volume addacl --acl user:testuser2/scm@EXAMPLE.COM:r ${target}
       Execute             ozone sh volume addacl --acl user:testuser2/scm@EXAMPLE.COM:rl ${source}
       Execute             ozone sh bucket addacl --acl user:testuser2/scm@EXAMPLE.COM:rl ${source}/readable-bucket
       Execute             ozone sh bucket addacl --acl user:testuser2/scm@EXAMPLE.COM:r ${target}/readable-link
       Execute             ozone sh bucket addacl --acl user:testuser2/scm@EXAMPLE.COM:r ${target}/link-to-unreadable-bucket
   ```
   
   I think it is reasonable that set acl with testuser2. But if someone set acl with testuser2/scm@EXAMPLE.COM, I think we need make sure that this setting is only for testuser2/scm@EXAMPLE.COM, but not for testuser in other host. 
   
   I have fix it, Let's wait to check.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu edited a comment on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu edited a comment on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-896636238


   @adoroszlai 
   I found this config, and the ugi.getShortUserName was replace with root. 
   ```
   CORE-SITE.XML_hadoop.security.auth_to_local=RULE:[2:$1](testuser2.*) RULE:[2:$1@$0](.*)s/.*/root/
   ```
   I don't know why use this config, I can't find the init commit, this is too old. 
   
   In CreateVolumeHandler.java, I changed code. Because I think owner and admin should be shortUserName, but not fullUserName. But the shortUserName was replace with root, so I allow root to check admin user. Please help me review, thanks.
   
   
   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-890353658


   @jojochuang Can I ask another question? I don't know why this PR fail when check, though this patch work well in my laptop or server.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-890695070


   @jojochuang Can we reopen this issue? Sorry for rebase this branch, so this issue was closed.
   And how about the progress about benchmark in secure mode? 


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] adoroszlai commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
adoroszlai commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-894040618


   @zhengchenyu failure in _acceptance (secure)_ seems related to this change.  Can you please check?
   
   ```
   Can follow link with read access                                      | FAIL |
   'PERMISSION_DENIED User testuser2/scm@EXAMPLE.COM doesn't have READ permission to access volume 71945-target null null' does not contain 'key-in-readable-bucket'
   ```


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu closed pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu closed pull request #2466:
URL: https://github.com/apache/ozone/pull/2466


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu closed pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu closed pull request #2466:
URL: https://github.com/apache/ozone/pull/2466


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu closed pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu closed pull request #2466:
URL: https://github.com/apache/ozone/pull/2466


   


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org


[GitHub] [ozone] zhengchenyu commented on pull request #2466: HDDS-5043. Can't list volume accurately in secure mode

Posted by GitBox <gi...@apache.org>.
zhengchenyu commented on pull request #2466:
URL: https://github.com/apache/ozone/pull/2466#issuecomment-890712264


   > i don't have the privilege to reopen the PR. Could you follow this instruction to reopen? https://gist.github.com/robertpainsi/2c42c15f1ce6dab03a0675348edd4e2c
   
   Thank you very much! It works.


-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@ozone.apache.org
For additional commands, e-mail: issues-help@ozone.apache.org