You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by wu...@apache.org on 2019/02/12 11:24:20 UTC

[incubator-skywalking] branch top-sql updated: Fix a startup issue.

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

wusheng pushed a commit to branch top-sql
in repository https://gitbox.apache.org/repos/asf/incubator-skywalking.git


The following commit(s) were added to refs/heads/top-sql by this push:
     new 47120eb  Fix a startup issue.
47120eb is described below

commit 47120eb968913f776cbabdc45e063606c4db4795
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Tue Feb 12 19:24:09 2019 +0800

    Fix a startup issue.
---
 .../src/main/java/org/apache/skywalking/oap/server/core/CoreModule.java  | 1 +
 1 file changed, 1 insertion(+)

diff --git a/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/CoreModule.java b/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/CoreModule.java
index 1baa250..8eb7302 100644
--- a/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/CoreModule.java
+++ b/oap-server/server-core/src/main/java/org/apache/skywalking/oap/server/core/CoreModule.java
@@ -65,6 +65,7 @@ public class CoreModule extends ModuleDefine {
         classes.add(MetadataQueryService.class);
         classes.add(AggregationQueryService.class);
         classes.add(AlarmQueryService.class);
+        classes.add(TopNRecordsQueryService.class);
     }
 
     private void addServerInterface(List<Class> classes) {