From 3d36dd88202a86730ced3e73ef168b9569862a50 Mon Sep 17 00:00:00 2001 From: Renovate Bot Date: Thu, 5 Aug 2021 19:05:28 +0000 Subject: [PATCH 1/2] Update grpc.version to v1.39.0 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 655f88daaa..2bb5d94b28 100644 --- a/pom.xml +++ b/pom.xml @@ -96,7 +96,7 @@ 2.5.3 Hoxton.SR8 2.11.0.RELEASE - 1.30.2 + 1.39.0 2.5.3 1.16.0 0.12.1 From 84bededd13bbb88a63dbda7b6f163b82f39ca387 Mon Sep 17 00:00:00 2001 From: github-actions <> Date: Thu, 5 Aug 2021 19:05:58 +0000 Subject: [PATCH 2/2] Google Java Format --- .../itests/exception/handling/ExceptionHandlingV3.java | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/factcast-itests/factcast-itests-exception-handling-v3-compat/src/test/java/org/factcast/itests/exception/handling/ExceptionHandlingV3.java b/factcast-itests/factcast-itests-exception-handling-v3-compat/src/test/java/org/factcast/itests/exception/handling/ExceptionHandlingV3.java index fa6c8be9ce..200c38902a 100644 --- a/factcast-itests/factcast-itests-exception-handling-v3-compat/src/test/java/org/factcast/itests/exception/handling/ExceptionHandlingV3.java +++ b/factcast-itests/factcast-itests-exception-handling-v3-compat/src/test/java/org/factcast/itests/exception/handling/ExceptionHandlingV3.java @@ -91,7 +91,10 @@ public void testProjection_transformationErrors() { ec.publish(createTestFact(aggId, 1, "{\"firstName\":\"Peter\",\"lastName\":\"Zwegert\"}")); val proj = new LocalManagedUserNames(); - assertDoesNotThrow(() -> {ec.update(proj);}); + assertDoesNotThrow( + () -> { + ec.update(proj); + }); assertThat(proj.exception()).isNull(); }