diff options
author | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-08 15:07:53 +0200 |
---|---|---|
committer | Simon Brandhof <simon.brandhof@sonarsource.com> | 2015-06-08 15:17:49 +0200 |
commit | 81d37f61213eb6d51e1185da984e7390e459c7a4 (patch) | |
tree | accfc68a7861447bcee094f96ef9d1727dedab71 /sonar-batch-protocol/src/main/protobuf | |
parent | 7e74953459b608feb1772d398cb640b10f20a21c (diff) | |
download | sonarqube-81d37f61213eb6d51e1185da984e7390e459c7a4.tar.gz sonarqube-81d37f61213eb6d51e1185da984e7390e459c7a4.zip |
SONAR-6568 remove events from batch
Diffstat (limited to 'sonar-batch-protocol/src/main/protobuf')
-rw-r--r-- | sonar-batch-protocol/src/main/protobuf/batch_report.proto | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/batch_report.proto b/sonar-batch-protocol/src/main/protobuf/batch_report.proto index 869573da18d..31b42388b42 100644 --- a/sonar-batch-protocol/src/main/protobuf/batch_report.proto +++ b/sonar-batch-protocol/src/main/protobuf/batch_report.proto @@ -56,15 +56,6 @@ message ComponentLink { optional string href = 2; } -// temporary message during development of computation stack -message Event { - optional int32 component_ref = 1; - optional string name = 2; - optional string description = 3; - optional EventCategory category = 4; - optional string event_data = 5; -} - message Component { optional int32 ref = 1; optional string path = 2; @@ -86,7 +77,6 @@ message Component { // temporary fields during development of computation stack optional int64 snapshot_id = 13; - repeated Event event = 14; } message Measure { |