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

markt-asf pushed a commit to branch 9.0.x
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/9.0.x by this push:
     new 8335a14150 Fix backport
8335a14150 is described below

commit 8335a14150087afb3bfcc7bc59591383a6ea6502
Author: Mark Thomas <[email protected]>
AuthorDate: Wed Sep 16 08:35:09 2026 +0100

    Fix backport
---
 test/org/apache/catalina/realm/TestCombinedRealm.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/org/apache/catalina/realm/TestCombinedRealm.java 
b/test/org/apache/catalina/realm/TestCombinedRealm.java
index 30b1b074ac..082cc44992 100644
--- a/test/org/apache/catalina/realm/TestCombinedRealm.java
+++ b/test/org/apache/catalina/realm/TestCombinedRealm.java
@@ -119,7 +119,7 @@ public class TestCombinedRealm {
         @Override
         protected Principal getPrincipal(String username) {
             if (this.username.equals(username)) {
-                return new GenericPrincipal(username, null);
+                return new GenericPrincipal(username, null, null);
             }
             return null;
         }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to