forked from TrueCloudLab/frostfs-s3-gw
[#584] Fix order in astToTable
Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
This commit is contained in:
parent
260fb95677
commit
3f4a55f39e
1 changed files with 2 additions and 2 deletions
|
@ -783,8 +783,8 @@ func getParentResource(parent *ast, resource *astResource) *astResource {
|
||||||
func astToTable(ast *ast) (*eacl.Table, error) {
|
func astToTable(ast *ast) (*eacl.Table, error) {
|
||||||
table := eacl.NewTable()
|
table := eacl.NewTable()
|
||||||
|
|
||||||
for _, resource := range ast.Resources {
|
for i := len(ast.Resources) - 1; i >= 0; i-- {
|
||||||
records, err := formRecords(resource.Operations, resource)
|
records, err := formRecords(ast.Resources[i].Operations, ast.Resources[i])
|
||||||
if err != nil {
|
if err != nil {
|
||||||
return nil, fmt.Errorf("form records: %w", err)
|
return nil, fmt.Errorf("form records: %w", err)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue