You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@skywalking.apache.org by li...@apache.org on 2020/04/18 12:22:45 UTC

[skywalking-agent-test-tool] branch v3-skip-analysis created (now 2e4907e)

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

liuhan pushed a change to branch v3-skip-analysis
in repository https://gitbox.apache.org/repos/asf/skywalking-agent-test-tool.git.


      at 2e4907e  fix missing skip analysis field

This branch includes the following new commits:

     new 2e4907e  fix missing skip analysis field

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



[skywalking-agent-test-tool] 01/01: fix missing skip analysis field

Posted by li...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

liuhan pushed a commit to branch v3-skip-analysis
in repository https://gitbox.apache.org/repos/asf/skywalking-agent-test-tool.git

commit 2e4907e84b958ca2f4f29cea42652cfcc0a83eb9
Author: Mrproliu <mr...@lagou.com>
AuthorDate: Sat Apr 18 20:22:12 2020 +0800

    fix missing skip analysis field
---
 .../skywalking/plugin/test/mockcollector/util/TraceSegmentHandler.java | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/mock-collector/src/main/java/org/apache/skywalking/plugin/test/mockcollector/util/TraceSegmentHandler.java b/mock-collector/src/main/java/org/apache/skywalking/plugin/test/mockcollector/util/TraceSegmentHandler.java
index fe01630..4c470d0 100644
--- a/mock-collector/src/main/java/org/apache/skywalking/plugin/test/mockcollector/util/TraceSegmentHandler.java
+++ b/mock-collector/src/main/java/org/apache/skywalking/plugin/test/mockcollector/util/TraceSegmentHandler.java
@@ -46,7 +46,8 @@ public class TraceSegmentHandler {
                        .componentId(spanObject.getComponentId())
                        .isError(spanObject.getIsError())
                        .spanType(spanObject.getSpanType().name())
-                       .peer(spanObject.getPeer());
+                       .peer(spanObject.getPeer())
+                       .skipAnalysis(spanObject.getSkipAnalysis());
 
             for (Log log : spanObject.getLogsList()) {
                 spanBuilder.logEvent(log.getDataList());