Skip to content

Commit

Permalink
Fix dummy status report generation
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlwilson committed Aug 27, 2022
1 parent 78b376e commit efda280
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public GoPluginApiResponse execute() throws Exception {

List<String> reports = new ArrayList<>();

for (ClusterProfileProperties profile : request.allClusterProfileProperties()) {
for (ClusterProfileProperties profile : request.allClusterProfilePropertiesWithDefaultClusterProfile()) {
AgentInstances agentInstances = allClusterInstances.get(profile.uuid());
StatusReport statusReport = agentInstances.getStatusReport(profile);
reports.add(viewBuilder.build("status-report-template", statusReport));
Expand Down

0 comments on commit efda280

Please sign in to comment.