coheigea commented on a change in pull request #927:
URL: https://github.com/apache/cxf/pull/927#discussion_r839380054



##########
File path: 
rt/rs/security/oauth-parent/oauth2-saml/src/main/java/org/apache/cxf/rs/security/oauth2/saml/SamlOAuthValidator.java
##########
@@ -144,7 +145,7 @@ private void validateSubjectConfirmation(Message m,
                                              SubjectConfirmationData 
subjectConfData) {
         if (subjectConfData == null) {
             if (!subjectConfirmationDataRequired
-                && cs.getNotOnOrAfter() != null && 
!cs.getNotOnOrAfter().isBeforeNow()) {
+                && cs.getNotOnOrAfter() != null && 
!cs.getNotOnOrAfter().isBefore(Instant.now())) {

Review comment:
       @andrei-ivanov The previous code used 
https://www.joda.org/joda-time/apidocs/org/joda/time/DateTime.html#DateTime-- 
which uses the default time zone.




-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


Reply via email to