Skip to content
This repository was archived by the owner on Oct 2, 2025. It is now read-only.

Commit 98bca2a

Browse files
committed
fix(ecs): update application caching agent to get appname from Moniker
1 parent 6726ee7 commit 98bca2a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

clouddriver-ecs/src/main/java/com/netflix/spinnaker/clouddriver/ecs/provider/agent/ApplicationCachingAgent.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ protected List<Application> getItems(AmazonECS ecs, ProviderCache providerCache)
8383
Map<String, Map<String, Collection<String>>> appRelationships = new HashMap<>();
8484

8585
for (Service service : services) {
86-
String applicationKey = service.getApplicationName();
86+
String applicationKey = service.getMoniker().getApp();
8787
String serviceKey =
8888
Keys.getServiceKey(service.getAccount(), service.getRegion(), service.getServiceName());
8989

0 commit comments

Comments
 (0)