From 8f47026facdf244901154087584a72543f9a8977 Mon Sep 17 00:00:00 2001 From: "Alexandre DUVAL - @kannarfr" Date: Mon, 9 Jan 2023 15:06:17 +0100 Subject: [PATCH] fix typo --- .../biscuitpulsar/AuthenticationProviderBiscuit.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/java/com/clevercloud/biscuitpulsar/AuthenticationProviderBiscuit.java b/src/main/java/com/clevercloud/biscuitpulsar/AuthenticationProviderBiscuit.java index 8342f25..34e5198 100644 --- a/src/main/java/com/clevercloud/biscuitpulsar/AuthenticationProviderBiscuit.java +++ b/src/main/java/com/clevercloud/biscuitpulsar/AuthenticationProviderBiscuit.java @@ -74,7 +74,7 @@ public void initialize(ServiceConfiguration serviceConfiguration) throws IOExcep } /** - * This load the revocation list from /etc/biscuit/revocation_list.hex.txt. If the file does not exists + * This load the revocation list from /etc/biscuit/revocation_list.hex.conf. If the file does not exists * it will fallback to the maven resources folder and load the file used for test revocation_list.hex.conf * * Please note that the Scanner usage if for performance issues. @@ -83,7 +83,7 @@ public void initialize(ServiceConfiguration serviceConfiguration) throws IOExcep private void loadRevocationList() throws IOException { this.revokedIdentifiers = new HashSet<>(); - String defaultFilePath = "/etc/biscuit/revocation_list.hex.txt"; + String defaultFilePath = "/etc/biscuit/revocation_list.hex.conf"; File file = new File(defaultFilePath); if (file.exists() && !file.isDirectory() && file.canRead()) {