Remove November 1 check (#859)

This commit is contained in:
sarahcaseybot
2020-11-04 13:10:48 -05:00
committed by GitHub
parent e3d400958c
commit 700d612ff9
2 changed files with 0 additions and 81 deletions
@@ -336,10 +336,7 @@ public class RegistrarSettingsAction implements Runnable, JsonActionRunner.JsonA
*/
private boolean validateCertificate(String existingCertificate, String certificateString) {
if ((existingCertificate == null) || !existingCertificate.equals(certificateString)) {
// TODO(sarhabot): remove this check after November 1, 2020
if (tm().getTransactionTime().isAfter(DateTime.parse("2020-11-01T00:00:00Z"))) {
certificateChecker.validateCertificate(certificateString);
}
return true;
}
return false;