forked from TrueCloudLab/frostfs-node
Fix typo in error details of ParseSetEACL function
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
9659bdc14d
commit
c12ea210da
1 changed files with 1 additions and 1 deletions
|
@ -81,7 +81,7 @@ func ParseSetEACL(items []stackitem.Item) (event.Event, error) {
|
|||
// parse session token
|
||||
ev.token, err = client.BytesFromStackItem(items[3])
|
||||
if err != nil {
|
||||
return nil, fmt.Errorf("could not get sesison token: %w", err)
|
||||
return nil, fmt.Errorf("could not get session token: %w", err)
|
||||
}
|
||||
|
||||
return ev, nil
|
||||
|
|
Loading…
Reference in a new issue