diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-30 09:02:14 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-07-02 19:44:28 +0200 |
commit | 1c0b9a97e3bc6d58c4697b4350b39adc81a6efc1 (patch) | |
tree | 58dc9e0251604655638d5f9f47611116e6e49cd1 /sonar-batch-protocol/src/main/protobuf/batch_report.proto | |
parent | 44a34aca80bb01c3a7689fe02d34f17718bf9293 (diff) | |
download | sonarqube-1c0b9a97e3bc6d58c4697b4350b39adc81a6efc1.tar.gz sonarqube-1c0b9a97e3bc6d58c4697b4350b39adc81a6efc1.zip |
SONAR-6588 move computation of debt to Compute Engine
Diffstat (limited to 'sonar-batch-protocol/src/main/protobuf/batch_report.proto')
-rw-r--r-- | sonar-batch-protocol/src/main/protobuf/batch_report.proto | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/batch_report.proto b/sonar-batch-protocol/src/main/protobuf/batch_report.proto index 361c0419fff..08c5340d366 100644 --- a/sonar-batch-protocol/src/main/protobuf/batch_report.proto +++ b/sonar-batch-protocol/src/main/protobuf/batch_report.proto @@ -99,6 +99,7 @@ message Measure { optional int32 person_id = 20; } +/* TODO to be removed. It prevents streaming */ message Measures { optional int32 component_ref = 1; repeated Measure measure = 2; @@ -113,11 +114,9 @@ message Issue { repeated string tag = 6; optional double effort_to_fix = 7; optional string attributes = 8; - - // TODO should it be moved to compute engine? - optional int64 debt_in_minutes = 9; } +/* TODO to be removed. It prevents streaming */ message Issues { optional int32 component_ref = 1; repeated Issue issue = 2; |