Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
keirbadger authored Jun 30, 2022
1 parent 5ab6125 commit d4bdef1
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion ecs_update_monitor/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,10 @@ def __next__(self):
)

def _check_taskdef(self, primary_deployment):
pass
if primary_deployment['taskDefinition'] != self._taskdef:
raise TaskdefDoesNotMatchError(
self._taskdef, primary_deployment['taskDefinition']
)

def _deploy_in_progress(self, running, desired, previous_running):
if running != desired or previous_running:
Expand Down

0 comments on commit d4bdef1

Please sign in to comment.