From b501b6b33729bc068e83fbe594e5079867b31122 Mon Sep 17 00:00:00 2001 From: Andrew Cornies Date: Tue, 16 Apr 2019 20:58:01 -0400 Subject: [PATCH] Fix spelling for argument. Signed-off-by: Andrew Cornies --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 102790e0..4f85681a 100644 --- a/main.go +++ b/main.go @@ -34,7 +34,7 @@ var ( nomadTLSCA = flag.String("nomad_tls_ca", "", "The TLS ca certificate file location") nomadTLSCert = flag.String("nomad_tls_cert", "", "The TLS client certifcate file location") nomadTLSKey = flag.String("nomad_tls_key", "", "The TLS private key file location") - nomadTLSSkipVerify = flag.Bool("noamd_tls_skip_verify", false, "Skips TLS verification for Nomad API. Not recommend for production") + nomadTLSSkipVerify = flag.Bool("nomad_tls_skip_verify", false, "Skips TLS verification for Nomad API. Not recommend for production") nomadACL = flag.String("nomad_acl", "", "The ACL token for faas-nomad if Nomad ACLs are enabled") consulAddr = flag.String("consul_addr", "http://localhost:8500", "Address for Consul API endpoint") consulACL = flag.String("consul_acl", "", "ACL token for Consul API, only required if ACL are enabled in Consul")