Skip to content

Commit

Permalink
Fixed test
Browse files Browse the repository at this point in the history
Signed-off-by: Nils Bandener <[email protected]>
  • Loading branch information
nibix committed Jun 28, 2024
1 parent 74b5c1f commit 9a55c8c
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -520,11 +520,12 @@ public PrivilegesEvaluatorResponse evaluate(PrivilegesEvaluationContext context)
if (!replaceResult.continueEvaluation) {
if (replaceResult.accessDenied) {
auditLog.logMissingPrivileges(action0, request, task);
return PrivilegesEvaluatorResponse.insufficient(action0, context);
} else {
presponse.allowed = true;
presponse.createIndexRequestBuilder = replaceResult.createIndexRequestBuilder;
return presponse;
}
return presponse;
}
}

Expand Down

0 comments on commit 9a55c8c

Please sign in to comment.