From e72ad2785048936fd0dda687333018001345114e Mon Sep 17 00:00:00 2001 From: Armon Dadgar Date: Wed, 5 Feb 2014 14:54:35 -0800 Subject: [PATCH] TODO cleanups --- command/agent/command.go | 2 +- command/agent/config_test.go | 2 +- consul/state_store.go | 1 - 3 files changed, 2 insertions(+), 3 deletions(-) diff --git a/command/agent/command.go b/command/agent/command.go index e92143370e..ac8409a03f 100644 --- a/command/agent/command.go +++ b/command/agent/command.go @@ -304,7 +304,7 @@ WAIT: // handleReload is invoked when we should reload our configs, e.g. SIGHUP func (c *Command) handleReload(config *Config) *Config { c.Ui.Output("Reloading configuration...") - // TODO + // TODO : handle reload return config } diff --git a/command/agent/config_test.go b/command/agent/config_test.go index 0fdcf0d8ad..8b2c1f8dd2 100644 --- a/command/agent/config_test.go +++ b/command/agent/config_test.go @@ -1,3 +1,3 @@ package agent -// TODO: +// TODO: Add tests... diff --git a/consul/state_store.go b/consul/state_store.go index 1714e713e6..a263259928 100644 --- a/consul/state_store.go +++ b/consul/state_store.go @@ -193,7 +193,6 @@ func (s *StateStore) initialize() error { } // Setup the query tables - // TODO: Other queries... s.queryTables = map[string]MDBTables{ "Nodes": MDBTables{s.nodeTable}, "Services": MDBTables{s.serviceTable},