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
commit 3e4509efeb

View file

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