Commit daf34b0
authored
Fix secret scope ACL deletion loop exiting early on NotFound (#4212)
## Changes
When deleting multiple secret scope ACLs, if one ACL returns NotFound
(due to race conditions or eventual consistency), the code would `return
nil` and exit the loop early. This prevented remaining ACLs from being
deleted. Changed to `continue` to skip NotFound errors and proceed with
remaining deletions.
## Tests
Only static analysis, no tests.1 parent d0a9eb1 commit daf34b0
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
188 | 188 | | |
189 | 189 | | |
190 | 190 | | |
191 | | - | |
| 191 | + | |
192 | 192 | | |
193 | 193 | | |
194 | 194 | | |
| |||
0 commit comments