From f7b84d69a495ae67d88fdf9d7f680c77190d0dfc Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Fri, 17 Jun 2016 13:11:01 -0700 Subject: [PATCH] etcd-agent/client: fixup godocs --- tools/functional-tester/etcd-agent/client/client.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/functional-tester/etcd-agent/client/client.go b/tools/functional-tester/etcd-agent/client/client.go index 6f4299e4c..53d28d034 100644 --- a/tools/functional-tester/etcd-agent/client/client.go +++ b/tools/functional-tester/etcd-agent/client/client.go @@ -17,9 +17,11 @@ package client import "net/rpc" type Status struct { + // State gives the human-readable status of an agent (e.g., "started" or "terminated") + State string + // TODO: gather more informations // TODO: memory usage, raft information, etc.. - State string } type Agent interface {