open-consul/command/agent
Frank Schroeder 58c3b1ff38 Use fmt.Fprint/Fprintf/Fprintln
Used the following rewrite rules:

gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c, d))) -> fmt.Fprintf(resp, a, b, c, d)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b, c))) -> fmt.Fprintf(resp, a, b, c)' *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a, b))) -> fmt.Fprintf(resp, a, b)'  *.go
gofmt -w -r 'resp.Write([]byte(fmt.Sprintf(a))) -> fmt.Fprint(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a + "\n")) -> fmt.Fprintln(resp, a)' *.go
gofmt -w -r 'resp.Write([]byte(a)) -> fmt.Fprint(resp, a)' *.go
2017-04-20 09:02:59 -07:00
..
acl.go Disables agent-level enforcement on Consul agents unless acl_datacenter is set. 2017-03-29 12:24:42 -07:00
acl_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
acl_endpoint_test.go
acl_test.go Adds remaining unit tests for agent ACL vet and filter functions. 2016-12-14 19:28:09 -08:00
agent.go Adds a new -disable-host-node-id option to help when testing with containers. 2017-04-12 22:07:18 -07:00
agent_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
agent_endpoint_test.go Changes verson 8 ACLs to opt-out. 2017-03-24 12:12:24 -07:00
agent_test.go Adds a new -disable-host-node-id option to help when testing with containers. 2017-04-12 22:07:18 -07:00
bindata_assetfs.go Updates static assets to pick up #2899. 2017-04-13 14:40:16 -07:00
catalog_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
catalog_endpoint_test.go Use new APIs 2017-03-23 18:48:13 -04:00
check.go Standardize the case of all check log messages 2017-01-05 08:34:20 +00:00
check_test.go Use new APIs 2017-03-23 18:48:13 -04:00
command.go Added check to see if ui and ui-dir flags are both specified 2017-04-17 17:25:57 -07:00
command_test.go Use new APIs 2017-03-23 18:48:13 -04:00
config.go Adds a new -disable-host-node-id option to help when testing with containers. 2017-04-12 22:07:18 -07:00
config_test.go Adds a new -disable-host-node-id option to help when testing with containers. 2017-04-12 22:07:18 -07:00
coordinate_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
coordinate_endpoint_test.go
dns.go Merge pull request #2690 from zeroae/f-simple-rfc2782 2017-03-02 14:49:36 -08:00
dns_test.go Use new APIs 2017-03-23 18:48:13 -04:00
event_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
event_endpoint_test.go Use new APIs 2017-03-23 18:48:13 -04:00
flag_slice_value.go
flag_slice_value_test.go
health_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
health_endpoint_test.go Use new APIs 2017-03-23 18:48:13 -04:00
http.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
http_api.md
http_test.go Update TestHTTPServer_UnixSocket with DialContext 2017-02-10 21:29:42 -05:00
keyring.go Added -relay-factor param to keyring operations 2017-02-01 21:53:29 -05:00
keyring_test.go Added -relay-factor param to keyring operations 2017-02-01 21:53:29 -05:00
kvs_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
kvs_endpoint_test.go
local.go Keeps the service and check tokens around for deregistration. 2017-03-24 17:15:20 -07:00
local_test.go Fixes up some broken unit tests. 2017-03-24 17:35:07 -07:00
operator_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
operator_endpoint_test.go Add CLI/API endpoints for removing peer by ID 2017-03-30 10:13:32 -07:00
prepared_query_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
prepared_query_endpoint_test.go Add tests for node meta in prepared queries and update docs 2017-01-23 19:17:30 -05:00
remote_exec.go
remote_exec_test.go
session_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
session_endpoint_test.go
snapshot_endpoint.go
snapshot_endpoint_test.go
status_endpoint.go
status_endpoint_test.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
structs.go
structs_test.go
translate_addr.go
txn_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
txn_endpoint_test.go
ui_endpoint.go Use fmt.Fprint/Fprintf/Fprintln 2017-04-20 09:02:59 -07:00
ui_endpoint_test.go
user_event.go Changes `disable_remote_exec` default to true so remote exec is opt-in. 2017-03-30 09:43:32 -07:00
user_event_test.go Use new APIs 2017-03-23 18:48:13 -04:00
util.go Remove the RPC client interface and update docs 2017-02-28 13:41:09 -08:00
util_test.go
watch_handler.go
watch_handler_test.go