[#1651] cli: Fix CID setting in eACL creation

Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
remotes/fyrchik/fix-grpc-timeout-backup
Pavel Karpy 2022-08-02 17:26:50 +03:00 committed by LeL
parent 9a5f9d6f0e
commit 8f44335925
2 changed files with 1 additions and 1 deletions

View File

@ -10,6 +10,7 @@ Changelog for NeoFS Node
### Fixed
- Losing request context in eACL response checks (#1595)
- Setting CID field in `neofs-cli acl extended create` (#1650)
- `neofs-ir` no longer hangs if it cannot bind to the control endpoint (#1643)
- Do not require `lifetime` flag in `session create` CLI command (#1655)

View File

@ -67,7 +67,6 @@ func createEACL(cmd *cobra.Command, _ []string) {
var containerID cid.ID
if cidArg != "" {
var containerID cid.ID
if err := containerID.DecodeString(cidArg); err != nil {
cmd.PrintErrf("invalid container ID: %v\n", err)
os.Exit(1)