aboutsummaryrefslogtreecommitdiffstats
path: root/sonar-ws
diff options
context:
space:
mode:
authorSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-09-12 16:59:06 +0200
committerSébastien Lesaint <sebastien.lesaint@sonarsource.com>2017-09-13 15:50:54 +0200
commit58678f9db7ff90dc4c591c467b96e416cfe1303e (patch)
tree1ff156e069c4a290aa3959d0de5b8d240a5b1b1c /sonar-ws
parentb49a62254e8266d1a421ed626851c4f3bb780e0b (diff)
downloadsonarqube-58678f9db7ff90dc4c591c467b96e416cfe1303e.tar.gz
sonarqube-58678f9db7ff90dc4c591c467b96e416cfe1303e.zip
SONAR-9741 fix types of fields in response of WS
Diffstat (limited to 'sonar-ws')
-rw-r--r--sonar-ws/src/main/protobuf/ws-system.proto4
1 files changed, 2 insertions, 2 deletions
diff --git a/sonar-ws/src/main/protobuf/ws-system.proto b/sonar-ws/src/main/protobuf/ws-system.proto
index 874d838ffc9..5a6cddfe4e8 100644
--- a/sonar-ws/src/main/protobuf/ws-system.proto
+++ b/sonar-ws/src/main/protobuf/ws-system.proto
@@ -65,8 +65,8 @@ message Node {
optional string name = 1;
optional NodeType type = 2;
optional string host = 3;
- optional string port = 4;
- optional string started = 5;
+ optional int32 port = 4;
+ optional string startedAt = 5;
optional Health health = 6;
repeated Cause causes = 7;
}