Remove global namespace option
This commit is contained in:
parent
4362a885eb
commit
3735b0e529
@ -314,12 +314,6 @@ var (
|
|||||||
EnvVars: []string{"MICRO_CONFIG"},
|
EnvVars: []string{"MICRO_CONFIG"},
|
||||||
Usage: "The source of the config to be used to get configuration",
|
Usage: "The source of the config to be used to get configuration",
|
||||||
},
|
},
|
||||||
&cli.StringFlag{
|
|
||||||
Name: "namespace",
|
|
||||||
EnvVars: []string{"MICRO_NAMESPACE"},
|
|
||||||
Usage: "The namespace the service belongs to",
|
|
||||||
Value: auth.DefaultNamespace,
|
|
||||||
},
|
|
||||||
}
|
}
|
||||||
|
|
||||||
DefaultBrokers = map[string]func(...broker.Option) broker.Broker{
|
DefaultBrokers = map[string]func(...broker.Option) broker.Broker{
|
||||||
@ -684,9 +678,6 @@ func (c *cmd) Before(ctx *cli.Context) error {
|
|||||||
ctx.String("auth_id"), ctx.String("auth_secret"),
|
ctx.String("auth_id"), ctx.String("auth_secret"),
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
if len(ctx.String("namespace")) > 0 {
|
|
||||||
authOpts = append(authOpts, auth.Namespace(ctx.String("namespace")))
|
|
||||||
}
|
|
||||||
|
|
||||||
if len(ctx.String("auth_public_key")) > 0 {
|
if len(ctx.String("auth_public_key")) > 0 {
|
||||||
authOpts = append(authOpts, auth.PublicKey(ctx.String("auth_public_key")))
|
authOpts = append(authOpts, auth.PublicKey(ctx.String("auth_public_key")))
|
||||||
|
Loading…
Reference in New Issue
Block a user