Skip to content

Commit

Permalink
Add passphrase for tagging (#103)
Browse files Browse the repository at this point in the history
* Add Passphrase for tagging

* Fix tests
  • Loading branch information
Loïc GREFFIER authored Sep 28, 2023
1 parent 5b10086 commit 7946d29
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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<byte[], KafkaError>);
Expand Down

0 comments on commit 7946d29

Please sign in to comment.