agent: drop config argument

agent.config and config are identical.
This commit is contained in:
Frank Schroeder 2017-05-11 19:27:24 +02:00
parent 1d5b56eec1
commit c47db2c922
No known key found for this signature in database
GPG Key ID: 4D65C6EAEC87DECD
4 changed files with 7 additions and 5 deletions

View File

@ -466,7 +466,7 @@ func (c *Command) setupAgent(config *Config, logOutput io.Writer, logWriter *log
c.agent = agent
if config.Ports.HTTP > 0 || config.Ports.HTTPS > 0 {
servers, err := NewHTTPServers(agent, config, logOutput)
servers, err := NewHTTPServers(agent, logOutput)
if err != nil {
agent.Shutdown()
c.UI.Error(fmt.Sprintf("Error starting http servers: %s", err))

View File

@ -34,11 +34,13 @@ type HTTPServer struct {
// NewHTTPServers starts new HTTP servers to provide an interface to
// the agent.
func NewHTTPServers(agent *Agent, config *Config, logOutput io.Writer) ([]*HTTPServer, error) {
func NewHTTPServers(agent *Agent, logOutput io.Writer) ([]*HTTPServer, error) {
if logOutput == nil {
return nil, fmt.Errorf("Please provide a valid logOutput(io.Writer)")
}
config := agent.config
var servers []*HTTPServer
if config.Ports.HTTPS > 0 {

View File

@ -60,7 +60,7 @@ RECONF:
}
dir, agent := makeAgentLog(t, conf, l, logWriter)
servers, err := NewHTTPServers(agent, conf, agent.logOutput)
servers, err := NewHTTPServers(agent, agent.logOutput)
if err != nil {
if configTry < 3 {
goto RECONF
@ -160,7 +160,7 @@ func TestHTTPServer_UnixSocket_FileExists(t *testing.T) {
defer os.RemoveAll(dir)
// Try to start the server with the same path anyways.
if _, err := NewHTTPServers(agent, conf, agent.logOutput); err != nil {
if _, err := NewHTTPServers(agent, agent.logOutput); err != nil {
t.Fatalf("err: %s", err)
}

View File

@ -78,7 +78,7 @@ func testAgentWithConfigReload(t *testing.T, cb func(c *agent.Config), reloadCh
conf.Addresses.HTTP = "127.0.0.1"
httpAddr := fmt.Sprintf("127.0.0.1:%d", conf.Ports.HTTP)
http, err := agent.NewHTTPServers(a, conf, os.Stderr)
http, err := agent.NewHTTPServers(a, os.Stderr)
if err != nil {
os.RemoveAll(dir)
t.Fatalf(fmt.Sprintf("err: %v", err))