Skip to content

Commit

Permalink
Upgrade to edge-common 4.4.2 EDGPATRON-106 (#97)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
adamdickmeiss authored Dec 5, 2022
1 parent d0bf924 commit fc715bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 13 deletions.
17 changes: 5 additions & 12 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

<!-- the main class -->
<exec.mainClass>org.folio.edge.patron.MainVerticle</exec.mainClass>
<vertx.version>4.3.3</vertx.version>
<vertx.version>4.3.5</vertx.version>
</properties>

<dependencyManagement>
Expand All @@ -45,17 +45,10 @@
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson</groupId>
<artifactId>jackson-bom</artifactId>
<version>2.13.3</version>
<type>pom</type>
<scope>import</scope>
</dependency>
<dependency>
<groupId>org.apache.logging.log4j</groupId>
<artifactId>log4j-bom</artifactId>
<version>2.17.2</version>
<version>2.19.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down Expand Up @@ -107,7 +100,7 @@
<dependency>
<groupId>org.folio</groupId>
<artifactId>edge-common</artifactId>
<version>4.4.1</version>
<version>4.4.2</version>
</dependency>

<!-- Only needed for AwsParamStore -->
Expand Down Expand Up @@ -145,13 +138,13 @@
<dependency>
<groupId>org.awaitility</groupId>
<artifactId>awaitility</artifactId>
<version>3.0.0</version>
<version>4.2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>nl.jqno.equalsverifier</groupId>
<artifactId>equalsverifier</artifactId>
<version>3.4.2</version>
<version>3.12</version>
<scope>test</scope>
</dependency>
<dependency>
Expand Down
1 change: 0 additions & 1 deletion src/main/java/org/folio/edge/patron/MainVerticle.java
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}

Expand Down

0 comments on commit fc715bf

Please sign in to comment.