You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Recently we got a security test case failure for testPredictWithReadOnlyMLAccess that is caused by the pr #3597. Basically we have model index reading before transport call in which there is a cluster permission control. So in that test case, we failed to hit the no permission error instead we got an index reading error. This is not correct, we should check the permission at the beginning.
Solution
Move model index reading from rest layer to transport layer.
The text was updated successfully, but these errors were encountered:
Description
Recently we got a security test case failure for
testPredictWithReadOnlyMLAccess
that is caused by the pr #3597. Basically we have model index reading before transport call in which there is a cluster permission control. So in that test case, we failed to hit the no permission error instead we got an index reading error. This is not correct, we should check the permission at the beginning.Solution
Move model index reading from rest layer to transport layer.
The text was updated successfully, but these errors were encountered: