client: remove unused indirection for referencing consul executable

Was thinking about using the testing pattern where you create executable
shell scripts as test resources which "mock" the process a bit of code
is meant to fork+exec. Turns out that wasn't really necessary in this case.
This commit is contained in:
Seth Hoenig
2020-01-07 08:48:11 -06:00
parent ead935d12c
commit 4b4dfacda5

View File

@@ -43,9 +43,6 @@ type envoyBootstrapHook struct {
// Consul's gRPC endpoint.
consulHTTPAddr string
// executable is executable file that is consul
executable string
// logger is used to log things
logger hclog.Logger
}