diff --git a/cmd/mnemosyned/config.go b/cmd/mnemosyned/config.go index cdbe5a2..bcb4fd5 100644 --- a/cmd/mnemosyned/config.go +++ b/cmd/mnemosyned/config.go @@ -57,11 +57,11 @@ func (c *configuration) init() { flag.StringVar(&c.host, "host", "127.0.0.1", "Host") flag.IntVar(&c.port, "port", 8080, "Port") - flag.BoolVar(&c.grpc.debug, "grpc.debug", false, "If true, enables very verbose grpc debug mode. Useful to track connectivity issues.") + flag.BoolVar(&c.grpc.debug, "grpc.debug", false, "If true, enables very verbose gRPC to debug mode. Useful to track connectivity issues.") flag.StringVar(&c.cluster.listen, "cluster.listen", "", "Complete instance address (including port).") - flag.Var(&c.cluster.seeds, "cluster.seeds", "List of instances addresses that are pare of the cluster separated by the comma. Entry that overlaps with cluster.listen value will be ignored.") - flag.StringVar(&c.catalog.http, "catalog.http", "http://localhost:8500/v1/catalog/service/mnemosyned", "Address of service catalog (exprimental).") - flag.StringVar(&c.catalog.dns, "catalog.dns", "", "DNS server address that can resolve SRV lookup (experimental).") + flag.Var(&c.cluster.seeds, "cluster.seeds", "List of comma-separated instances addresses that are part of the cluster. An entry that overlaps with cluster.listen value will be ignored.") + flag.StringVar(&c.catalog.http, "catalog.http", "http://localhost:8500/v1/catalog/service/mnemosyned", "Address of a service catalog (experimental).") + flag.StringVar(&c.catalog.dns, "catalog.dns", "", "A DNS server address that can resolve SRV lookup (experimental).") flag.DurationVar(&c.session.ttl, "ttl", storage.DefaultTTL, "Session time to live, after which session is deleted.") flag.DurationVar(&c.session.ttc, "ttc", storage.DefaultTTC, "Session time to cleanup, how often cleanup will be performed.") flag.StringVar(&c.logger.environment, "log.environment", "production", "Logger environment config (production, stackdriver or development).")