We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent af23228 commit 0f724c5Copy full SHA for 0f724c5
1 file changed
app/lib/client/resources/ecs.rb
@@ -65,6 +65,8 @@ def list_services_data
65
end
66
67
break unless image.nil?
68
+ rescue StandardError => e
69
+ logger.error("Error listing services 1: #{e.message}")
70
71
72
dep = svc.deployments ? svc.deployments[0] : {}
@@ -103,10 +105,14 @@ def list_services_data
103
105
manifest_tag: @ecr_client.get_manifest_tag(image_name),
104
106
status: status
107
}
108
109
+ logger.error("Error listing services 2: #{e.message}")
110
111
112
+ logger.error("Error listing services 3: #{e.message}")
113
114
rescue StandardError => e
- logger.error("Error listing services: #{e.message}")
115
+ logger.error("Error listing services 4: #{e.message}")
116
117
services
118
0 commit comments