forked from TrueCloudLab/frostfs-s3-gw
[#583] authmate: Fix error messages and help
Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
This commit is contained in:
parent
5d52f056eb
commit
ceb00eefc5
1 changed files with 3 additions and 3 deletions
|
@ -185,7 +185,7 @@ func issueSecret() *cli.Command {
|
||||||
},
|
},
|
||||||
&cli.StringFlag{
|
&cli.StringFlag{
|
||||||
Name: "bearer-rules",
|
Name: "bearer-rules",
|
||||||
Usage: "rules for bearer token as plain json string",
|
Usage: "rules for bearer token (filepath or a plain json string are allowed)",
|
||||||
Required: false,
|
Required: false,
|
||||||
Destination: &eaclRulesFlag,
|
Destination: &eaclRulesFlag,
|
||||||
},
|
},
|
||||||
|
@ -448,7 +448,7 @@ func parsePolicies(val string) (authmate.ContainerPolicies, error) {
|
||||||
|
|
||||||
if !json.Valid(data) {
|
if !json.Valid(data) {
|
||||||
if data, err = os.ReadFile(val); err != nil {
|
if data, err = os.ReadFile(val); err != nil {
|
||||||
return nil, fmt.Errorf("coudln't read json file or its content is invalid")
|
return nil, fmt.Errorf("coudln't read json file or provided json is invalid")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -478,7 +478,7 @@ func getJSONRules(val string) ([]byte, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil, fmt.Errorf("coudln't read json file or its content is invalid")
|
return nil, fmt.Errorf("coudln't read json file or provided json is invalid")
|
||||||
}
|
}
|
||||||
|
|
||||||
// getSessionRules reads json session rules.
|
// getSessionRules reads json session rules.
|
||||||
|
|
Loading…
Reference in a new issue