Skip to content

Commit

Permalink
Remove debug output
Browse files Browse the repository at this point in the history
  • Loading branch information
cin committed Mar 31, 2023
1 parent 7a8c11d commit ae66c23
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,6 @@ func main() {
}
}

fmt.Println("hi")
clientset, err := kubernetes.NewForConfig(config)
if err != nil {
panic(err)
Expand All @@ -109,7 +108,6 @@ func main() {
panic(err)
}

fmt.Println("hi")
var wg sync.WaitGroup
resultsChan := make(chan PodResult, len(pods.Items))

Expand All @@ -129,7 +127,6 @@ func main() {
results = append(results, result)
}

fmt.Println("hi")
sort.Sort(ByPodName(results))

for _, result := range results {
Expand Down

0 comments on commit ae66c23

Please sign in to comment.