Merge pull request #247 from fkautz/pr_out_renaming_variable_to_pass_golint

This commit is contained in:
Frederick F. Kautz IV
2015-03-03 12:01:41 -08:00

View File

@@ -62,7 +62,7 @@ func runCmd(c *cli.Context) {
StorageType: storageType,
},
}
webUiServerConfig := server.ServerConfig{
webUIServerConfig := server.ServerConfig{
Domain: domain,
Address: webaddress,
Tls: false,
@@ -73,7 +73,7 @@ func runCmd(c *cli.Context) {
},
}
serverConfigs = append(serverConfigs, apiServerConfig)
serverConfigs = append(serverConfigs, webUiServerConfig)
serverConfigs = append(serverConfigs, webUIServerConfig)
server.Start(serverConfigs)
}