Skip to content
This repository was archived by the owner on Jul 11, 2022. It is now read-only.

Commit a9c1625

Browse files
committed
[BZ 1132400] - metrics load icon visible forever for storage nodes auto-group - processResponse() even if there are no metrics to remove the spinner icon
1 parent 642a4af commit a9c1625

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/enterprise/gui/coregui/src/main/java/org/rhq/coregui/client/inventory/groups/detail/monitoring/metric/MetricsGroupViewDataSource.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,14 +251,14 @@ public void onSuccess(List<List<MeasurementDataNumericHighLowComposite>> measure
251251
if (null != measurementDataList && !measurementDataList.isEmpty()) {
252252
metricsDataList = measurementDataList;
253253
response.setData(buildRecords(metricDisplaySummaries));
254-
processResponse(request.getRequestId(), response);
255254
new Timer() {
256255
@Override
257256
public void run() {
258257
BrowserUtility.graphSparkLines();
259258
}
260259
}.schedule(150);
261260
}
261+
processResponse(request.getRequestId(), response);
262262
}
263263
});
264264

0 commit comments

Comments
 (0)