Skip to content

Commit

Permalink
remove pdb, clear up comments
Browse files Browse the repository at this point in the history
  • Loading branch information
willronchetti committed May 21, 2020
1 parent af8f368 commit 9dad7bb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions app.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ def end_of_day_on_weekdays():
'monday_checks': Cron('30', '9', '?', '*', '2', '*'),
'monthly_checks': Cron('30', '9', '1', '*', '?', '*'),
'manual_checks': effectively_never(),
'deployment_checks': end_of_day_on_weekdays() # disabled (?) manually
'deployment_checks': end_of_day_on_weekdays() # disabled, see schedule below
}
}

Expand Down Expand Up @@ -105,7 +105,7 @@ def monthly_checks(event):
@app.schedule(foursight_cron_by_schedule[STAGE]['deployment_checks'])
def deployment_checks(event):
if STAGE == 'dev':
return
return # do not schedule the deployment checks on dev
queue_scheduled_checks('all', 'deployment_checks')


Expand Down
1 change: 0 additions & 1 deletion chalicelib/checks/deployment_checks.py
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,6 @@ def deploy_ff_staging(connection, **kwargs):
""" Deploys Fourfront master to whoever staging is.
Runs as part of the 'deployment_checks' schedule on data ONLY.
"""
import pdb; pdb.set_trace()
return deploy_application_to_beanstalk(connection,
env=who_is_ff_staging(),
branch='master')

0 comments on commit 9dad7bb

Please sign in to comment.