mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-07-21 19:01:49 +00:00
Merge pull request #106892 from ncdc/improve-path-recorder-duplicate-registration-info
Improve pathrecorder duplicate registration info
This commit is contained in:
commit
bfeabe894f
@ -103,10 +103,11 @@ func (m *PathRecorderMux) ListedPaths() []string {
|
||||
}
|
||||
|
||||
func (m *PathRecorderMux) trackCallers(path string) {
|
||||
stack := string(debug.Stack())
|
||||
if existingStack, ok := m.pathStacks[path]; ok {
|
||||
utilruntime.HandleError(fmt.Errorf("registered %q from %v", path, existingStack))
|
||||
utilruntime.HandleError(fmt.Errorf("duplicate path registration of %q: original registration from %v\n\nnew registration from %v", path, existingStack, stack))
|
||||
}
|
||||
m.pathStacks[path] = string(debug.Stack())
|
||||
m.pathStacks[path] = stack
|
||||
}
|
||||
|
||||
// refreshMuxLocked creates a new mux and must be called while locked. Otherwise the view of handlers may
|
||||
|
Loading…
Reference in New Issue
Block a user