HDDS-1611.[Addendum] Evaluate ACL on volume bucket key and prefix to authorize access. Contributed by Ajay Kumar. (#973)
Fixes a build break in ozone.
This commit is contained in:
parent
eccc9a40de
commit
6872efcabf
|
@ -43,10 +43,7 @@ import org.apache.hadoop.fs.FileSystem;
|
|||
import org.apache.hadoop.fs.Path;
|
||||
import org.apache.hadoop.fs.PathIsNotEmptyDirectoryException;
|
||||
import org.apache.hadoop.fs.permission.FsPermission;
|
||||
|
||||
import org.apache.hadoop.ozone.om.exceptions.OMException;
|
||||
import org.apache.hadoop.ozone.om.helpers.OzoneFileStatus;
|
||||
|
||||
import org.apache.hadoop.security.UserGroupInformation;
|
||||
import org.apache.hadoop.security.token.Token;
|
||||
import org.apache.hadoop.util.Progressable;
|
||||
|
@ -632,8 +629,8 @@ public class BasicOzoneFileSystem extends FileSystem {
|
|||
String key = pathToKey(qualifiedPath);
|
||||
FileStatus fileStatus = null;
|
||||
try {
|
||||
fileStatus = adapter.getFileStatus(key)
|
||||
.makeQualified(uri, qualifiedPath, getUsername(), getUsername());
|
||||
fileStatus = convertFileStatus(
|
||||
adapter.getFileStatus(key, uri, qualifiedPath, getUsername()));
|
||||
} catch (OMException ex) {
|
||||
if (ex.getResult().equals(OMException.ResultCodes.KEY_NOT_FOUND)) {
|
||||
throw new FileNotFoundException("File not found. path:" + f);
|
||||
|
|
Loading…
Reference in New Issue