We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6dfb485 commit 94e3dfcCopy full SHA for 94e3dfc
CHANGELOG.md
@@ -11,6 +11,7 @@
11
- (Feature) Respect ToBeCleanedServers in Agency
12
- (Improvement) Unify K8S Error Handling
13
- (Feature) Remove stuck Pods
14
+- (Bugfix) Fix Go routine leak
15
16
## [1.2.19](https://github.com/arangodb/kube-arangodb/tree/1.2.19) (2022-10-05)
17
- (Bugfix) Prevent changes when UID is wrong
pkg/util/timer/after.go
@@ -29,12 +29,6 @@ func After(duration time.Duration) <-chan time.Time {
29
defer close(r)
30
31
tc := time.NewTimer(duration)
32
- defer func() {
33
- // Cleanup channel
34
- for range tc.C {
35
-
36
- }
37
- }()
38
defer tc.Stop()
39
40
r <- <-tc.C
0 commit comments