We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ab8a196 commit fa44c91Copy full SHA for fa44c91
1 file changed
amoro-format-iceberg/src/main/java/org/apache/amoro/op/MixedTableOperations.java
@@ -61,12 +61,12 @@ public FileIO io() {
61
62
@Override
63
public String metadataFileLocation(String fileName) {
64
- return ops.metadataFileLocation(fileName);
+ return authenticatedFileIO.doAs(() -> ops.metadataFileLocation(fileName));
65
}
66
67
68
public LocationProvider locationProvider() {
69
- return ops.locationProvider();
+ return authenticatedFileIO.doAs(ops::locationProvider);
70
71
72
0 commit comments