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/04/05 00:06:37 UTC

[incubator-skywalking] branch log updated: Fix startup issue.

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

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


The following commit(s) were added to refs/heads/log by this push:
     new 8db6629  Fix startup issue.
8db6629 is described below

commit 8db662926aed7d42a522c6a7d01f23d3d814204f
Author: Wu Sheng <wu...@foxmail.com>
AuthorDate: Thu Apr 4 17:06:25 2019 -0700

    Fix 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 c53a48c..2785570 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
@@ -66,6 +66,7 @@ public class CoreModule extends ModuleDefine {
         classes.add(TopologyQueryService.class);
         classes.add(MetricQueryService.class);
         classes.add(TraceQueryService.class);
+        classes.add(LogQueryService.class);
         classes.add(MetadataQueryService.class);
         classes.add(AggregationQueryService.class);
         classes.add(AlarmQueryService.class);