Skip to content

Commit

Permalink
make time more readable
Browse files Browse the repository at this point in the history
  • Loading branch information
Mike Vanbuskirk committed Oct 24, 2023
1 parent e7b6856 commit 19293a0
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 @@ -183,7 +183,7 @@ func init() {
func runCleanup(ctx context.Context, execName string) {
// Every 15 minutes, attempt to remove dirs
pid := os.Getpid()
ticker := time.NewTicker(900 * time.Second)
ticker := time.NewTicker(15 * time.Minute)
defer ticker.Stop()

for range ticker.C {
Expand Down

0 comments on commit 19293a0

Please sign in to comment.