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 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);