We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 3e77f9d + 79f1342 commit e1edf0bCopy full SHA for e1edf0b
CHANGELOG.md
@@ -1,5 +1,7 @@
1
# CHANGELOG
2
3
+* Do not forget work item on firewall controller error (@timoreimann)
4
+
5
## v0.1.31 (beta) - January 30 2021
6
7
* Fix broken firewall counter metrics by incrementing (@timoreimann)
cloud-controller-manager/do/firewall_controller.go
@@ -170,8 +170,9 @@ func (fc *FirewallController) processNextItem() bool {
170
if err != nil {
171
klog.Errorf("failed to process worker item: %v", err)
172
fc.queue.AddRateLimited(key)
173
+ } else {
174
+ fc.queue.Forget(key)
175
}
- fc.queue.Forget(key)
176
return true
177
178
0 commit comments