Skip to content

Commit 53c4ce5

Browse files
committed
Fix commons-compress vulnerability and reduce log scope for de-caching scheduled items
1 parent 82c8f3e commit 53c4ce5

2 files changed

Lines changed: 7 additions & 1 deletion

File tree

core/src/main/java/org/commonjava/indy/core/expire/ScheduleManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -780,7 +780,7 @@ public void cancelled( CacheEntryRemovedEvent<ScheduleKey, Map> e )
780780
logger.error( "[FATAL]The infinispan cache removed event for indy schedule manager is null.", new NullPointerException( "CacheEntryRemovedEvent is null" ) );
781781
return;
782782
}
783-
logger.info( "Cache removed to cancel scheduling, Key is {}, Value is {}", e.getKey(), e.getValue() );
783+
logger.trace( "Cache removed to cancel scheduling, Key is {}, Value is {}", e.getKey(), e.getValue() );
784784
}
785785

786786
// This method is only used to check clustered schedule expire cache nodes topology changing

pom.xml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1039,6 +1039,12 @@
10391039
<artifactId>commons-codec</artifactId>
10401040
<version>1.10</version>
10411041
</dependency>
1042+
<dependency>
1043+
<groupId>org.apache.commons</groupId>
1044+
<artifactId>commons-compress</artifactId>
1045+
<version>1.19</version>
1046+
</dependency>
1047+
10421048
<!-- START: JAX-RS support -->
10431049
<dependency>
10441050
<groupId>io.undertow</groupId>

0 commit comments

Comments
 (0)