Skip to content

Commit

Permalink
chore: remove unused sleep (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
medcl authored Dec 29, 2024
1 parent 6643d8f commit 3d2bb1b
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ func main() {
terminalFooter := ("")

app := framework.NewApp("loadgen", "A http load generator and testing suite.",
util.TrimSpaces(config.Version), util.TrimSpaces(config.BuildNumber), util.TrimSpaces(config.LastCommitLog), util.TrimSpaces(config.BuildDate), util.TrimSpaces(config.EOLDate), terminalHeader, terminalFooter)
config.Version, config.BuildNumber, config.LastCommitLog, config.BuildDate, config.EOLDate, terminalHeader, terminalFooter)

app.IgnoreMainConfigMissing()
app.Init(nil)
Expand Down Expand Up @@ -409,8 +409,6 @@ func main() {
app.Run()
}

time.Sleep(1 * time.Second)

}

func runDSLFile(appConfig *AppConfig, path string) int {
Expand Down

0 comments on commit 3d2bb1b

Please sign in to comment.