Skip to content

Commit

Permalink
fix: quick fix for default run sleep (#68)
Browse files Browse the repository at this point in the history
  • Loading branch information
ekristen authored Feb 5, 2024
1 parent 413e850 commit 542f18b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pkg/commands/nuke/command.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"context"
"fmt"
"slices"
"time"

"github.com/sirupsen/logrus"
"github.com/urfave/cli/v2"
Expand Down Expand Up @@ -104,6 +105,7 @@ func execute(c *cli.Context) error {
// Instantiate libnuke
n := libnuke.New(params, filters, parsedConfig.Settings)

n.SetRunSleep(5 * time.Second)
n.RegisterVersion(common.AppVersion.Summary)

// Register our custom validate handler that validates the account and AWS nuke unique alias checks
Expand Down

0 comments on commit 542f18b

Please sign in to comment.