Skip to content

Commit fd37250

Browse files
Merge pull request #242 from IABTechLab/vse-UID2-5015-allow-jwt-validation-failures-when-not-enforcing-jwts
Update shared, log failed jwt creation exceptions
2 parents 0057be1 + 4cf2c19 commit fd37250

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
<vertx.verticle>com.uid2.core.vertx.CoreVerticle</vertx.verticle>
2525
<launcher.class>io.vertx.core.Launcher</launcher.class>
2626

27-
<uid2-shared.version>8.1.10</uid2-shared.version>
27+
<uid2-shared.version>8.1.22</uid2-shared.version>
2828
<image.version>${project.version}</image.version>
2929
</properties>
3030

src/main/java/com/uid2/core/vertx/CoreVerticle.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -345,7 +345,7 @@ private void handleAttestAsync(RoutingContext rc) {
345345
if (enforceJWT) {
346346
throw e;
347347
} else {
348-
logger.info("Failed creating the JWT, but enforceJWT is false. No JWTs returned.");
348+
logger.info("Failed creating the JWT, but enforceJWT is false. No JWTs returned.", e);
349349
}
350350
}
351351
} catch (Exception e) {

0 commit comments

Comments
 (0)