소스 검색

fix incorrect error msg challenge profiles not being assigned when actual error is password profile not being assigned

Jason Rivard 5 년 전
부모
커밋
bb7235597e
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      server/src/main/java/password/pwm/util/password/PasswordUtility.java

+ 1 - 1
server/src/main/java/password/pwm/util/password/PasswordUtility.java

@@ -993,7 +993,7 @@ public class PasswordUtility
             }
         }
 
-        throw new PwmUnrecoverableException( new ErrorInformation( PwmError.ERROR_NO_PROFILE_ASSIGNED, "no challenge profile is configured" ) );
+        throw new PwmUnrecoverableException( new ErrorInformation( PwmError.ERROR_NO_PROFILE_ASSIGNED, "no password profile is assigned to user" ) );
     }