Skip to content

Commit

Permalink
undo accidental deletion in run.py
Browse files Browse the repository at this point in the history
  • Loading branch information
ErinWeisbart authored May 18, 2023
1 parent 452e2ee commit 8e14eaf
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions run.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,15 @@
from email.mime.multipart import MIMEMultipart
from email.mime.text import MIMEText

CREATE_DASHBOARD = False
CLEAN_DASHBOARD = False

from config import *

# Back compatability with old config requirements
if ':' in SQS_DEAD_LETTER_QUEUE:
SQS_DEAD_LETTER_QUEUE = SQS_DEAD_LETTER_QUEUE.rsplit(':',1)[1]

WAIT_TIME = 60
MONITOR_TIME = 60

Expand Down

0 comments on commit 8e14eaf

Please sign in to comment.