diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-08-17 11:03:46 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-08-18 12:37:32 +0200 |
commit | b3305db9ff2fd99996cb86f8a49f15194f3a3d91 (patch) | |
tree | e502be43421a914264c053f31245fb2d6d643c5c /sonar-ws | |
parent | f7417645a148d2adacc1764f3fdb63a0c1d935a0 (diff) | |
download | sonarqube-b3305db9ff2fd99996cb86f8a49f15194f3a3d91.tar.gz sonarqube-b3305db9ff2fd99996cb86f8a49f15194f3a3d91.zip |
SONAR-7843 add error stacktrace to /api/ce/task
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-ce.proto | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-ce.proto b/sonar-ws/src/main/protobuf/ws-ce.proto index 48be8be42a0..69caa3cb99e 100644 --- a/sonar-ws/src/main/protobuf/ws-ce.proto +++ b/sonar-ws/src/main/protobuf/ws-ce.proto @@ -78,7 +78,7 @@ message Task { optional int64 executionTimeMs = 14; optional bool logs = 15; optional string errorMessage = 16; - optional bool hasErrorStacktrace = 17; + optional string errorStacktrace = 17; } enum TaskStatus { |