Unverified Commit 4bb3a2a5 authored by Kubernetes Submit Queue's avatar Kubernetes Submit Queue Committed by GitHub

Merge pull request #65911 from wongma7/crap

Automatic merge from submit-queue (batch tested with PRs 63194, 65911). If you want to cherry-pick this change to another branch, please follow the instructions <a href="https://github.com/kubernetes/community/blob/master/contributors/devel/cherry-picks.md">here</a>. Remove crappy fmt.Println Remove @gnufied's debug message https://github.com/kubernetes/kubernetes/pull/64527 ```release-note NONE ```
parents e943d09f ddba1b58
...@@ -17,7 +17,6 @@ limitations under the License. ...@@ -17,7 +17,6 @@ limitations under the License.
package metrics package metrics
import ( import (
"fmt"
"sync" "sync"
"github.com/golang/glog" "github.com/golang/glog"
...@@ -75,7 +74,6 @@ func newVolumeInUseCollector( ...@@ -75,7 +74,6 @@ func newVolumeInUseCollector(
podLister corelisters.PodLister, podLister corelisters.PodLister,
pvLister corelisters.PersistentVolumeLister, pvLister corelisters.PersistentVolumeLister,
pluginMgr *volume.VolumePluginMgr) *volumeInUseCollector { pluginMgr *volume.VolumePluginMgr) *volumeInUseCollector {
fmt.Println("Doing this crap again")
return &volumeInUseCollector{pvcLister, podLister, pvLister, pluginMgr} return &volumeInUseCollector{pvcLister, podLister, pvLister, pluginMgr}
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment