Skip to content

Commit

Permalink
Fix the compilation failure (#157)
Browse files Browse the repository at this point in the history
Co-authored-by: Yufei Gu <yufei.apache.org>
  • Loading branch information
flyrain committed Aug 18, 2024
1 parent d6278e2 commit f8a423c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -88,8 +88,12 @@ tasks.named<RatTask>("rat").configure {

excludes.add("**/polaris-venv/**")

excludes.add("**/.pytest_cache/**")
excludes.add("regtests/**/py.typed")
excludes.add("regtests/**/*.ref")
excludes.add("regtests/.env")
excludes.add("regtests/derby.log")
excludes.add("regtests/metastore_db/**")
excludes.add("regtests/client/python/.openapi-generator/**")

excludes.add("**/*.ipynb")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public void setStorageIntegrationProvider(PolarisStorageIntegrationProvider stor
String overrideMessage =
"It appears this metastore manager has already been bootstrapped. "
+ "To continue bootstrapping, please first purge the metastore with the `purge` command.";
logger.error("\n\n {} \n\n", overrideMessage);
LOGGER.error("\n\n {} \n\n", overrideMessage);
throw new IllegalArgumentException(overrideMessage);
}

Expand Down

0 comments on commit f8a423c

Please sign in to comment.