You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@skywalking.apache.org by pe...@apache.org on 2018/04/22 08:37:14 UTC

[incubator-skywalking] branch protocol/ui-beta updated: Fixed bean definition fault.

This is an automated email from the ASF dual-hosted git repository.

pengys pushed a commit to branch protocol/ui-beta
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/protocol/ui-beta by this push:
     new 6edb060  Fixed bean definition fault.
6edb060 is described below

commit 6edb06080f8d6fef24471c5c3131fbf328cc7e30
Author: peng-yongsheng <80...@qq.com>
AuthorDate: Sun Apr 22 16:37:06 2018 +0800

    Fixed bean definition fault.
---
 .../skywalking/apm/collector/storage/ui/overview/Thermodynamic.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/apm-collector/apm-collector-storage/collector-storage-define/src/main/java/org/apache/skywalking/apm/collector/storage/ui/overview/Thermodynamic.java b/apm-collector/apm-collector-storage/collector-storage-define/src/main/java/org/apache/skywalking/apm/collector/storage/ui/overview/Thermodynamic.java
index a03a39f..55ee86a 100644
--- a/apm-collector/apm-collector-storage/collector-storage-define/src/main/java/org/apache/skywalking/apm/collector/storage/ui/overview/Thermodynamic.java
+++ b/apm-collector/apm-collector-storage/collector-storage-define/src/main/java/org/apache/skywalking/apm/collector/storage/ui/overview/Thermodynamic.java
@@ -26,18 +26,18 @@ import java.util.List;
  */
 public class Thermodynamic {
 
-    private List<Long> nodes;
+    private List<List<Long>> nodes;
     private int responseTimeStep;
 
     public Thermodynamic() {
         this.nodes = new LinkedList<>();
     }
 
-    public List<Long> getNodes() {
+    public List<List<Long>> getNodes() {
         return nodes;
     }
 
-    public void setNodes(List<Long> nodes) {
+    public void setNodes(List<List<Long>> nodes) {
         this.nodes = nodes;
     }
 

-- 
To stop receiving notification emails like this one, please contact
pengys@apache.org.