python fix to retrigger tests

This commit is contained in:
Curtis Castrapel 2018-10-12 07:25:58 -07:00
parent 89a077e54c
commit a912c3488d
1 changed files with 1 additions and 2 deletions

View File

@ -11,7 +11,6 @@ import copy
import sys import sys
from datetime import datetime, timezone, timedelta from datetime import datetime, timezone, timedelta
import arrow
from celery import Celery from celery import Celery
from flask import current_app from flask import current_app
@ -157,7 +156,7 @@ def remove_old_acme_certs():
# Delete pending certs more than a week old # Delete pending certs more than a week old
for cert in pending_certs: for cert in pending_certs:
if arrow.utcnow() - cert.last_updated > timedelta(days=7): if datetime.now(timezone.utc) - cert.last_updated > timedelta(days=7):
log_data['pending_cert_id'] = cert.id log_data['pending_cert_id'] = cert.id
log_data['pending_cert_name'] = cert.name log_data['pending_cert_name'] = cert.name
log_data['message'] = "Deleting pending certificate" log_data['message'] = "Deleting pending certificate"