Skip to content

Commit

Permalink
Merge branch 'hotfix/1.11.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
fabfuel committed Mar 23, 2021
2 parents 7e7991c + d271c60 commit c514f3b
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ecs_deploy/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
VERSION = '1.11.2'
VERSION = '1.11.3'
3 changes: 2 additions & 1 deletion ecs_deploy/ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ class EcsTaskDefinition(object):
def __init__(self, containerDefinitions, volumes, family, revision,
status, taskDefinitionArn, requiresAttributes=None,
taskRoleArn=None, executionRoleArn=None, compatibilities=None,
tags=None, registeredAt=None, registeredBy=None, **kwargs):
tags=None, registeredAt=None, deregisteredAt=None, registeredBy=None, **kwargs):

self.containers = containerDefinitions
self.volumes = volumes
Expand All @@ -241,6 +241,7 @@ def __init__(self, containerDefinitions, volumes, family, revision,
# task definition. Just storing them for now.
self.compatibilities = compatibilities
self.registered_at = registeredAt
self.deregistered_at = deregisteredAt
self.registered_by = registeredBy

@property
Expand Down
1 change: 1 addition & 0 deletions tests/test_ecs.py
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@
u'placementConstraints': {},
u'registeredBy': 'foobar',
u'registeredAt': '2021-01-20T14:33:44Z',
u'deregisteredAt': '2021-01-20T14:33:44Z',
u'unknownProperty': u'lorem-ipsum',
u'compatibilities': [u'EC2'],
}
Expand Down

0 comments on commit c514f3b

Please sign in to comment.