Copilot commented on code in PR #9274:
URL: https://github.com/apache/gravitino/pull/9274#discussion_r2566966877
##########
catalogs/hadoop-common/src/main/java/org/apache/gravitino/catalog/hadoop/fs/LocalFileSystemProvider.java:
##########
@@ -31,8 +30,7 @@ public class LocalFileSystemProvider implements
FileSystemProvider {
@Override
public FileSystem getFileSystem(Path path, Map<String, String> config)
throws IOException {
- Configuration configuration =
- FileSystemUtils.createConfiguration(BUILTIN_HDFS_FS_PROVIDER, config);
+ Configuration configuration =
FileSystemUtils.createConfiguration(GRAVITINO_BYPASS, config);
Review Comment:
Missing import for `GRAVITINO_BYPASS`. The constant is defined in
`FileSystemProvider` interface but not imported. Add the following import
statement:
```java
import static
org.apache.gravitino.catalog.hadoop.fs.FileSystemProvider.GRAVITINO_BYPASS;
```
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]