Skip to content

Commit

Permalink
Fix mistake in ACL config error message
Browse files Browse the repository at this point in the history
  • Loading branch information
oteffahi authored Apr 29, 2024
1 parent 05feb4c commit 8934690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion zenoh/src/net/routing/interceptor/authorization.rs
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ impl PolicyEnforcer {
validation_err.push_str("ACL config interfaces list is empty. ");
}
if config_rule.actions.is_empty() {
validation_err.push_str("ACL config rules list is empty. ");
validation_err.push_str("ACL config actions list is empty. ");
}
if config_rule.flows.is_empty() {
validation_err.push_str("ACL config flows list is empty. ");
Expand Down

0 comments on commit 8934690

Please sign in to comment.