Skip to content

Commit f8a423c

Browse files
authored
Fix the compilation failure (#157)
Co-authored-by: Yufei Gu <yufei.apache.org>
1 parent d6278e2 commit f8a423c

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

build.gradle.kts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,12 @@ tasks.named<RatTask>("rat").configure {
8888

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

91+
excludes.add("**/.pytest_cache/**")
9192
excludes.add("regtests/**/py.typed")
9293
excludes.add("regtests/**/*.ref")
94+
excludes.add("regtests/.env")
95+
excludes.add("regtests/derby.log")
96+
excludes.add("regtests/metastore_db/**")
9397
excludes.add("regtests/client/python/.openapi-generator/**")
9498

9599
excludes.add("**/*.ipynb")

polaris-core/src/main/java/io/polaris/core/persistence/LocalPolarisMetaStoreManagerFactory.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -174,7 +174,7 @@ public void setStorageIntegrationProvider(PolarisStorageIntegrationProvider stor
174174
String overrideMessage =
175175
"It appears this metastore manager has already been bootstrapped. "
176176
+ "To continue bootstrapping, please first purge the metastore with the `purge` command.";
177-
logger.error("\n\n {} \n\n", overrideMessage);
177+
LOGGER.error("\n\n {} \n\n", overrideMessage);
178178
throw new IllegalArgumentException(overrideMessage);
179179
}
180180

0 commit comments

Comments
 (0)