Skip to content

Commit

Permalink
feat: Updated duplicatefilefinder/main.go
Browse files Browse the repository at this point in the history
  • Loading branch information
sweep-ai[bot] committed Feb 15, 2024
1 parent 1531bd5 commit 86c56d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions duplicatefilefinder/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ func main() {

var wg sync.WaitGroup // Organizing our fluffy investigators

// Unleashing the worker kitties!
const numWorkers = 5
// Adjusting the number of whiskers in the hunt for efficiency...
var numWorkers = runtime.NumCPU() // More paws for more power!
for i := 0; i < numWorkers; i++ {
wg.Add(1)
go func() {
Expand Down

0 comments on commit 86c56d8

Please sign in to comment.