Skip to content

Commit

Permalink
Fix main() sleeping
Browse files Browse the repository at this point in the history
  • Loading branch information
xtrafrancyz committed Aug 24, 2021
1 parent be6ba1b commit 5ae6d19
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ func main() {
go targetRoutine(target)
}

time.Sleep(time.Minute * 99999)
time.Sleep(time.Duration(1<<63 - 1))
}

func targetRoutine(target Target) {
Expand Down

0 comments on commit 5ae6d19

Please sign in to comment.