From 74d50667f6f2ff70f2e146986d16b43d5da45b9d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Greffier?= Date: Thu, 28 Sep 2023 16:33:27 +0200 Subject: [PATCH 1/2] Add Passphrase for tagging --- .github/workflows/tag.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 7786aa55..1eaaf7e8 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -28,6 +28,7 @@ jobs: uses: crazy-max/ghaction-import-gpg@v6 with: gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }} + passphrase: ${{ secrets.GPG_PASSPHRASE }} git_user_signingkey: true git_commit_gpgsign: true From 862143de6f4bf2b8aad406aa93121bc69bb53bda Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Lo=C3=AFc=20Greffier?= Date: Thu, 28 Sep 2023 16:52:33 +0200 Subject: [PATCH 2/2] Fix tests --- .../error/DlqDeserializationExceptionHandlerTest.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/kstreamplify-core/src/test/java/com/michelin/kstreamplify/error/DlqDeserializationExceptionHandlerTest.java b/kstreamplify-core/src/test/java/com/michelin/kstreamplify/error/DlqDeserializationExceptionHandlerTest.java index 52a6af0d..2d26fba0 100644 --- a/kstreamplify-core/src/test/java/com/michelin/kstreamplify/error/DlqDeserializationExceptionHandlerTest.java +++ b/kstreamplify-core/src/test/java/com/michelin/kstreamplify/error/DlqDeserializationExceptionHandlerTest.java @@ -91,7 +91,7 @@ void shouldConfigure() { configs.put("schema.registry.url", "localhost:8080"); configs.put("acks", "all"); - handler = new DlqDeserializationExceptionHandler(); + handler = new DlqDeserializationExceptionHandler(null); handler.configure(configs); assertTrue(DlqExceptionHandler.getProducer() instanceof KafkaProducer);