Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix the bug of ERROR StatusLogger Unrecognized format specifier when … #218

Merged
merged 1 commit into from
Jan 17, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions main/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,12 @@
<minimizeJar>true</minimizeJar>
<filters>
<!-- Prevent minification from excluding classes looked up by name -->
<filter>
<artifact>org.apache.logging.log4j:*</artifact>
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Two blocks down it looks like we have log4j:log4j. At some point I guess we switched dependencies and updating this part of the build was missed.

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yep must have been it!

<includes>
<include>**</include>
</includes>
</filter>
<filter>
<artifact>org.apache.hadoop:hadoop-common</artifact>
<includes>
Expand Down