From fc715bfa15c0cda2cbc7290e944f5be57024d029 Mon Sep 17 00:00:00 2001 From: Adam Dickmeiss Date: Mon, 5 Dec 2022 18:11:05 +0100 Subject: [PATCH] Upgrade to edge-common 4.4.2 EDGPATRON-106 (#97) Also upgrades to make it closer to being able to run tests with Java 17. Unfortunately, not quite there yet as that requires fixes to edge-common it seems. --- pom.xml | 17 +++++------------ .../org/folio/edge/patron/MainVerticle.java | 1 - 2 files changed, 5 insertions(+), 13 deletions(-) diff --git a/pom.xml b/pom.xml index 8dc490b..f8038e2 100644 --- a/pom.xml +++ b/pom.xml @@ -33,7 +33,7 @@ org.folio.edge.patron.MainVerticle - 4.3.3 + 4.3.5 @@ -45,17 +45,10 @@ pom import - - com.fasterxml.jackson - jackson-bom - 2.13.3 - pom - import - org.apache.logging.log4j log4j-bom - 2.17.2 + 2.19.0 pom import @@ -107,7 +100,7 @@ org.folio edge-common - 4.4.1 + 4.4.2 @@ -145,13 +138,13 @@ org.awaitility awaitility - 3.0.0 + 4.2.0 test nl.jqno.equalsverifier equalsverifier - 3.4.2 + 3.12 test diff --git a/src/main/java/org/folio/edge/patron/MainVerticle.java b/src/main/java/org/folio/edge/patron/MainVerticle.java index 0c33c18..c8981e1 100644 --- a/src/main/java/org/folio/edge/patron/MainVerticle.java +++ b/src/main/java/org/folio/edge/patron/MainVerticle.java @@ -39,7 +39,6 @@ public MainVerticle() { : DEFAULT_PATRON_ID_CACHE_CAPACITY; logger.info("Using patronId cache capacity: " + patronIdCacheCapacity); - // initialize the TokenCache PatronIdCache.initialize(cacheTtlMs, failureCacheTtlMs, cacheCapacity); }