diff options
author | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-03-09 17:29:59 +0100 |
---|---|---|
committer | Sebastien Douheret <sebastien.douheret@iot.bzh> | 2018-03-13 12:40:02 +0100 |
commit | 6aa5e4ccb5adadcc0cb802c44c1e88a35a20a925 (patch) | |
tree | 3ad9718f862c8eead56d3c4d2de17a292f7097be | |
parent | 80708aa2578f3598fc8abd4d08e576947da22872 (diff) |
Updated Terminal message struct
Signed-off-by: Sebastien Douheret <sebastien.douheret@iot.bzh>
-rw-r--r-- | glide.yaml | 2 | ||||
-rw-r--r-- | lib/xaapiv1/targets.go | 4 |
2 files changed, 3 insertions, 3 deletions
@@ -22,7 +22,7 @@ import: - package: github.com/satori/go.uuid version: ^1.1.0 - package: gerrit.automotivelinux.org/gerrit/src/xds/xds-common.git - version: ~0.2.0 + version: ~0.3.0 subpackages: - golib/common - package: gerrit.automotivelinux.org/gerrit/src/xds/xds-server.git diff --git a/lib/xaapiv1/targets.go b/lib/xaapiv1/targets.go index 9cea6ff..1410fe6 100644 --- a/lib/xaapiv1/targets.go +++ b/lib/xaapiv1/targets.go @@ -99,8 +99,8 @@ type ( TerminalOutMsg struct { TermID string `json:"termID"` Timestamp string `json:"timestamp"` - Stdout string `json:"stdout"` - Stderr string `json:"stderr"` + Stdout []byte `json:"stdout"` + Stderr []byte `json:"stderr"` } // TerminalExitMsg Message sent on terminal/console exit |