aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-batch-protocol/src/main/protobuf
diff options
context:
space:
mode:
authorJulien Lancelot <julien.lancelot@sonarsource.com>2015-06-08 15:43:53 +0200
committerJulien Lancelot <julien.lancelot@sonarsource.com>2015-06-10 14:30:40 +0200
commit8beb0aa8ad8e191f532ea3ada6941708ba844af6 (patch)
tree56b58508ea02706462c5bf31df9caf221edea513 /sonar-batch-protocol/src/main/protobuf
parent38fed3b7af236c197c8caaeee618051c112f6c5b (diff)
downloadsonarqube-8beb0aa8ad8e191f532ea3ada6941708ba844af6.tar.gz
sonarqube-8beb0aa8ad8e191f532ea3ada6941708ba844af6.zip
SONAR-6260 Remove snapshot id from batch report
Diffstat (limited to 'sonar-batch-protocol/src/main/protobuf')
-rw-r--r--sonar-batch-protocol/src/main/protobuf/batch_report.proto8
1 files changed, 2 insertions, 6 deletions
diff --git a/sonar-batch-protocol/src/main/protobuf/batch_report.proto b/sonar-batch-protocol/src/main/protobuf/batch_report.proto
index 31b42388b42..88d4c6abdc5 100644
--- a/sonar-batch-protocol/src/main/protobuf/batch_report.proto
+++ b/sonar-batch-protocol/src/main/protobuf/batch_report.proto
@@ -43,11 +43,10 @@ message Metadata {
optional int64 analysis_date = 1;
// TODO should we keep this project_key here or not ? Because it's a duplication of Component.key
optional string project_key = 2;
- optional string branch = 6;
- optional int32 root_component_ref = 3;
+ optional string branch = 3;
+ optional int32 root_component_ref = 4;
// temporary fields used during development of computation stack
- optional int64 snapshot_id = 4;
optional int32 deleted_components_count = 5;
}
@@ -74,9 +73,6 @@ message Component {
optional int32 lines = 11;
// Only available on PROJECT and MODULE types
optional string description = 12;
-
- // temporary fields during development of computation stack
- optional int64 snapshot_id = 13;
}
message Measure {