X-Git-Url: https://git.arvados.org/arvados.git/blobdiff_plain/3d99c1541a450411a847c1c2b87721a4c51b484e..10440ac12d6771ab80469adf551d2cac8d3461e6:/tools/keep-block-check/keep-block-check.go diff --git a/tools/keep-block-check/keep-block-check.go b/tools/keep-block-check/keep-block-check.go index 995a1fd559..6127485835 100644 --- a/tools/keep-block-check/keep-block-check.go +++ b/tools/keep-block-check/keep-block-check.go @@ -108,7 +108,6 @@ type apiConfig struct { APIToken string APIHost string APIHostInsecure bool - ExternalClient bool } // Load config from given file @@ -152,8 +151,6 @@ func readConfigFromFile(filename string) (config apiConfig, blobSigningKey strin config.APIHost = value case "ARVADOS_API_HOST_INSECURE": config.APIHostInsecure = arvadosclient.StringBool(value) - case "ARVADOS_EXTERNAL_CLIENT": - config.ExternalClient = arvadosclient.StringBool(value) case "ARVADOS_BLOB_SIGNING_KEY": blobSigningKey = value } @@ -171,7 +168,6 @@ func setupKeepClient(config apiConfig, keepServicesJSON string, blobSignatureTTL ApiInsecure: config.APIHostInsecure, Client: &http.Client{Transport: &http.Transport{ TLSClientConfig: &tls.Config{InsecureSkipVerify: config.APIHostInsecure}}}, - External: config.ExternalClient, } // If keepServicesJSON is provided, use it instead of service discovery