Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
yuqi1129 committed Oct 16, 2024
1 parent 3517996 commit 27a911a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,6 @@ public String scheme() {

@Override
public String name() {
return "GCSFileSystemProvider";
return "gcs";
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ protected void createCatalog() {
Map<String, String> map = Maps.newHashMap();
map.put("gravitino.bypass.fs.gs.auth.service.account.enable", "true");
map.put("gravitino.bypass.fs.gs.auth.service.account.json.keyfile", SERVICE_ACCOUNT_FILE);
map.put(FILESYSTEM_PROVIDERS, "GCSFileSystemProvider");
map.put(FILESYSTEM_PROVIDERS, "gcs");

metalake.createCatalog(catalogName, Catalog.Type.FILESET, provider, "comment", map);

Expand Down

0 comments on commit 27a911a

Please sign in to comment.