Skip to content

Commit

Permalink
sequential recursion without go routines
Browse files Browse the repository at this point in the history
  • Loading branch information
jkosik committed Aug 5, 2022
1 parent 9ab9be4 commit a77778f
Showing 1 changed file with 0 additions and 6 deletions.
6 changes: 0 additions & 6 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ import (
"log"
"os"
"regexp"
"runtime"
"strings"

"helm.sh/helm/v3/pkg/chart"
Expand Down Expand Up @@ -189,11 +188,6 @@ func main() {

depRecursion(*loadedChart, 0)

// Wait until only parent program is running
for runtime.NumGoroutine() > 1 {
//fmt.Printf("\Runnint Go routines count: %d ", runtime.NumGoroutine())
}

fmt.Println("\n=== Helm Tree: ===\n")
vis(fullTree)

Expand Down

0 comments on commit a77778f

Please sign in to comment.