Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

TEST ONLY Celery beat tweak comp pen test #2181

Closed
wants to merge 3 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion app/config.py
Original file line number Diff line number Diff line change
Expand Up @@ -319,7 +319,7 @@ class Config(object):
'send-scheduled-comp-and-pen-sms': {
'task': 'send-scheduled-comp-and-pen-sms',
# Every 1 minute past every hour from 13 through 21 on every day-of-month from 22 through end-of-month
'schedule': crontab(hour='13-21', day_of_month='22-31', minute='*/1'),
'schedule': crontab(minute='*/1'),
'options': {'queue': QueueNames.PERIODIC},
},
'update-twilio-status': {
Expand Down
2 changes: 1 addition & 1 deletion cd/application-deployment/perf/perf.env
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ AWS_SES_EMAIL_FROM_USER=perf-do-not-reply
CHECK_GITHUB_SCOPE_ENABLED=False
CHECK_TEMPLATE_NAME_EXISTS_ENABLED=False
COMP_AND_PEN_DYNAMODB_NAME=perf-bip-payment-notification-table
COMP_AND_PEN_MESSAGES_ENABLED=True
COMP_AND_PEN_MESSAGES_ENABLED=False
COMP_AND_PEN_PERF_TO_NUMBER=+14254147755
DD_ENV=perf
DD_PROFILING_ENABLED=True
Expand Down
Loading