Skip to content

Commit 8e14eaf

Browse files
authored
undo accidental deletion in run.py
1 parent 452e2ee commit 8e14eaf

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

run.py

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,15 @@
99
from email.mime.multipart import MIMEMultipart
1010
from email.mime.text import MIMEText
1111

12+
CREATE_DASHBOARD = False
13+
CLEAN_DASHBOARD = False
14+
1215
from config import *
1316

17+
# Back compatability with old config requirements
18+
if ':' in SQS_DEAD_LETTER_QUEUE:
19+
SQS_DEAD_LETTER_QUEUE = SQS_DEAD_LETTER_QUEUE.rsplit(':',1)[1]
20+
1421
WAIT_TIME = 60
1522
MONITOR_TIME = 60
1623

0 commit comments

Comments
 (0)