This is an automated email from the ASF dual-hosted git repository.
wusheng pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/skywalking-agent-test-tool.git
The following commit(s) were added to refs/heads/master by this push:
new 46ace01 fix the field named isError is no mapping when serialization
(#23)
46ace01 is described below
commit 46ace014e3481f08f171839f91a147c06be503a0
Author: Evan <[email protected]>
AuthorDate: Mon Sep 7 10:08:30 2020 +0800
fix the field named isError is no mapping when serialization (#23)
---
.../plugin/test/agent/tool/validator/entity/SegmentForRead.java | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git
a/validator/src/main/java/org/apache/skywalking/plugin/test/agent/tool/validator/entity/SegmentForRead.java
b/validator/src/main/java/org/apache/skywalking/plugin/test/agent/tool/validator/entity/SegmentForRead.java
index ae3f612..6320bfc 100644
---
a/validator/src/main/java/org/apache/skywalking/plugin/test/agent/tool/validator/entity/SegmentForRead.java
+++
b/validator/src/main/java/org/apache/skywalking/plugin/test/agent/tool/validator/entity/SegmentForRead.java
@@ -176,8 +176,8 @@ public class SegmentForRead implements Segment {
this.componentName = componentName;
}
- public void setError(String error) {
- isError = error;
+ public void setIsError(String isError) {
+ this.isError = isError;
}
public void setSpanType(String spanType) {