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 13:41:17 UTC

[solr] 01/02: 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 branch_9x
in repository https://gitbox.apache.org/repos/asf/solr.git

commit 4fae4174dae62de6f4330a26157c23dd78c1f82e
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)
    
    (cherry picked from commit 74ce73787d32bad6131af6411af2a8a80e5b57f0)
---
 .../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);
           }
         }
       }