Remove debug text. Cut new release.

This commit is contained in:
James Pace 2022-04-02 00:16:00 +00:00
parent 0234131aa3
commit 55150af8c4
2 changed files with 6 additions and 1 deletions

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
j7s-mosquitto-plugin (0.0.3-1) unstable; urgency=medium
* Load multiple keys per user.
-- James Pace <jpace121@gmail.com> Sat, 2 Apr 2022 00:14:50 +0000
j7s-mosquitto-plugin (0.0.2-1) unstable; urgency=medium j7s-mosquitto-plugin (0.0.2-1) unstable; urgency=medium
* Update to ES256. * Update to ES256.

View File

@ -44,7 +44,6 @@ bool Authorizer::add(const std::string &token, const std::string &username)
const bool validated = [token, username, keys]() { const bool validated = [token, username, keys]() {
for (const auto key : keys) for (const auto key : keys)
{ {
std::cout << "Trying..." << std::endl;
if (validate(token, username, key)) if (validate(token, username, key))
{ {
return true; return true;