You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@solr.apache.org by ja...@apache.org on 2022/05/05 10:16:13 UTC

[solr] branch main updated: Fix typo in JWTVerificationkeyResolver exception message - verifiction -> verification (#823)

This is an automated email from the ASF dual-hosted git repository.

janhoy pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/solr.git


The following commit(s) were added to refs/heads/main by this push:
     new 74ce73787d3 Fix typo in JWTVerificationkeyResolver exception message - verifiction -> verification (#823)
74ce73787d3 is described below

commit 74ce73787d32bad6131af6411af2a8a80e5b57f0
Author: Jan Høydahl <ja...@users.noreply.github.com>
AuthorDate: Thu May 5 12:16:08 2022 +0200

    Fix typo in JWTVerificationkeyResolver exception message - verifiction -> verification (#823)
---
 .../java/org/apache/solr/security/jwt/JWTVerificationkeyResolver.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/modules/jwt-auth/src/java/org/apache/solr/security/jwt/JWTVerificationkeyResolver.java b/solr/modules/jwt-auth/src/java/org/apache/solr/security/jwt/JWTVerificationkeyResolver.java
index dd7a54bde39..a9254c7d5d7 100644
--- a/solr/modules/jwt-auth/src/java/org/apache/solr/security/jwt/JWTVerificationkeyResolver.java
+++ b/solr/modules/jwt-auth/src/java/org/apache/solr/security/jwt/JWTVerificationkeyResolver.java
@@ -97,7 +97,7 @@ public class JWTVerificationkeyResolver implements VerificationKeyResolver {
         } else {
           throw new SolrException(
               SolrException.ErrorCode.SERVER_ERROR,
-              "Signature verifiction not supported for multiple issuers without 'iss' claim in token.");
+              "Signature verification not supported for multiple issuers without 'iss' claim in token.");
         }
       } else {
         issuerConfig = issuerConfigs.get(tokenIssuer);
@@ -112,7 +112,7 @@ public class JWTVerificationkeyResolver implements VerificationKeyResolver {
           } else {
             throw new SolrException(
                 SolrException.ErrorCode.SERVER_ERROR,
-                "Signature verifiction failed due to no configured issuer with id " + tokenIssuer);
+                "Signature verification failed due to no configured issuer with id " + tokenIssuer);
           }
         }
       }