diff options
author | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-08-17 10:35:31 +0200 |
---|---|---|
committer | Sébastien Lesaint <sebastien.lesaint@sonarsource.com> | 2016-08-18 12:37:32 +0200 |
commit | f7417645a148d2adacc1764f3fdb63a0c1d935a0 (patch) | |
tree | 4a832c59e22ae7a1189056de2a6735b50f2963ac /sonar-ws | |
parent | 4518338ceaee07b951afbb0f5da69a164dc79a63 (diff) | |
download | sonarqube-f7417645a148d2adacc1764f3fdb63a0c1d935a0.tar.gz sonarqube-f7417645a148d2adacc1764f3fdb63a0c1d935a0.zip |
SONAR-7991 add error msg and hasStacktrace to /api/ce web services
Diffstat (limited to 'sonar-ws')
-rw-r--r-- | sonar-ws/src/main/protobuf/ws-ce.proto | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-ce.proto b/sonar-ws/src/main/protobuf/ws-ce.proto index 4440851e45a..48be8be42a0 100644 --- a/sonar-ws/src/main/protobuf/ws-ce.proto +++ b/sonar-ws/src/main/protobuf/ws-ce.proto @@ -77,6 +77,8 @@ message Task { optional bool isLastExecuted = 13; optional int64 executionTimeMs = 14; optional bool logs = 15; + optional string errorMessage = 16; + optional bool hasErrorStacktrace = 17; } enum TaskStatus { |