Remove some redundant consts

Signed-off-by: yuexiao-wang <wang.yuexiao@zte.com.cn>
This commit is contained in:
yuexiao-wang 2016-11-02 03:11:38 +08:00
parent 256b9c6011
commit 3acdab83fb
2 changed files with 2 additions and 9 deletions

View File

@ -14,13 +14,6 @@ import (
"github.com/spf13/pflag"
)
const (
generatedSecretEntropyBytes = 16
generatedSecretBase = 36
// floor(log(2^128-1, 36)) + 1
maxGeneratedSecretLength = 25
)
type initOptions struct {
swarmOptions
listenAddr NodeAddrOption
@ -46,7 +39,7 @@ func newInitCommand(dockerCli *command.DockerCli) *cobra.Command {
flags := cmd.Flags()
flags.Var(&opts.listenAddr, flagListenAddr, "Listen address (format: <ip|interface>[:port])")
flags.StringVar(&opts.advertiseAddr, flagAdvertiseAddr, "", "Advertised address (format: <ip|interface>[:port])")
flags.BoolVar(&opts.forceNewCluster, "force-new-cluster", false, "Force create a new cluster from current state.")
flags.BoolVar(&opts.forceNewCluster, "force-new-cluster", false, "Force create a new cluster from current state")
addSwarmFlags(flags, &opts.swarmOptions)
return cmd
}

View File

@ -33,7 +33,7 @@ type swarmOptions struct {
externalCA ExternalCAOption
}
// NodeAddrOption is a pflag.Value for listen and remote addresses
// NodeAddrOption is a pflag.Value for listening addresses
type NodeAddrOption struct {
addr string
}