We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 767dc19 commit 402072dCopy full SHA for 402072d
staging/src/k8s.io/apiserver/pkg/storage/cacher/cache_watcher.go
@@ -19,6 +19,8 @@ package cacher
19
import (
20
"context"
21
"fmt"
22
+ "os"
23
+ "runtime/debug"
24
"sync"
25
"time"
26
@@ -119,6 +121,9 @@ func (c *cacheWatcher) ResultChan() <-chan watch.Event {
119
121
120
122
// Implements watch.Interface.
123
func (c *cacheWatcher) Stop() {
124
+ fmt.Fprintf(os.Stderr, "#### 6a groupResource=%v stop stack next\n", c.groupResource)
125
+ debug.PrintStack()
126
+ fmt.Fprintf(os.Stderr, "#### 6b groupResource=%v \n", c.groupResource)
127
c.forget(false)
128
}
129
0 commit comments