From 55150af8c49189bba1958be66e94ea21d35ad303 Mon Sep 17 00:00:00 2001 From: James Pace Date: Sat, 2 Apr 2022 00:16:00 +0000 Subject: [PATCH] Remove debug text. Cut new release. --- debian/changelog | 6 ++++++ src/Authorizer.cpp | 1 - 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index 7c406f5..c03e47a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +j7s-mosquitto-plugin (0.0.3-1) unstable; urgency=medium + + * Load multiple keys per user. + + -- James Pace Sat, 2 Apr 2022 00:14:50 +0000 + j7s-mosquitto-plugin (0.0.2-1) unstable; urgency=medium * Update to ES256. diff --git a/src/Authorizer.cpp b/src/Authorizer.cpp index b1b90e7..a6bd931 100644 --- a/src/Authorizer.cpp +++ b/src/Authorizer.cpp @@ -44,7 +44,6 @@ bool Authorizer::add(const std::string &token, const std::string &username) const bool validated = [token, username, keys]() { for (const auto key : keys) { - std::cout << "Trying..." << std::endl; if (validate(token, username, key)) { return true;