Skip to content

Commit f1bca1d

Browse files
authored
Update fabfile.py
1 parent 6c59499 commit f1bca1d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

fabfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ def get_or_create_cluster():
184184

185185
def create_or_update_ecs_service():
186186
# Create the service with no workers (0 desired count)
187-
info = local('aws ecs list-services', capture=True)
187+
info = local('aws ecs list-services --cluster-name '+ECS_CLUSTER, capture=True)
188188
data = json.loads(info)
189189
service = [srv for srv in data['serviceArns'] if srv.endswith(ECS_SERVICE_NAME)]
190190
if len(service) > 0:

0 commit comments

Comments
 (0)