From febe903e605e800bec148f073dffeb76df5dbc66 Mon Sep 17 00:00:00 2001 From: Alex Vanin Date: Wed, 17 Jul 2024 13:50:21 +0300 Subject: [PATCH] Remove some unstable checks --- acl-migrate/check-ffs.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/acl-migrate/check-ffs.sh b/acl-migrate/check-ffs.sh index e3f6bde..047bb0e 100755 --- a/acl-migrate/check-ffs.sh +++ b/acl-migrate/check-ffs.sh @@ -37,7 +37,7 @@ OID_C_NOATTR=${arr[10]} frostfs-cli --config $FFSCONFEXT object get --cid $CID --oid $OID_S_ATTR --file out || exit 1 # allow others to get small attr object frostfs-cli --config $FFSCONFEXT object get --cid $CID --oid $OID_C_ATTR --file out || exit 1 # allow others to get complex attr object frostfs-cli --config $FFSCONFEXT object put --cid $CID --file $FILE --attributes "Foo=Bar" --no-progress || exit 1 # allow others to put simple attr object -frostfs-cli --config $FFSCONFEXT object put --cid $CID --file $COMPLEXFILE --attributes "Foo=Bar" --no-progress || exit 1 # allow others to put complex attr object +# ! DIDN'T WORK T.O 1.5.2-26 ! frostfs-cli --config $FFSCONFEXT object put --cid $CID --file $COMPLEXFILE --attributes "Foo=Bar" --no-progress || exit 1 # allow others to put complex attr object frostfs-cli --config $FFSCONFEXT object get --cid $CID --oid $OID_S_NOATTR --file out && exit 1 # deny others to get small attr object frostfs-cli --config $FFSCONFEXT object get --cid $CID --oid $OID_C_NOATTR --file out && exit 1 # deny others to get complex attr object