From 1b9bfa097057335edfd70d1ab3149bb3ca7ea6be Mon Sep 17 00:00:00 2001 From: Kavita Sriram <99139582+kavi-99@users.noreply.github.com> Date: Thu, 19 Sep 2024 01:17:20 +0800 Subject: [PATCH] Update main.go --- src/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.go b/src/main.go index f14eae33..07b45cc0 100644 --- a/src/main.go +++ b/src/main.go @@ -50,7 +50,7 @@ func main() { startTime := time.Now() randomSeed := startTime.Unix() // rand.Seed(randomSeed) // comment line for reproducible inter-arrival times - r := rand.New(rand.NewSource(randomSeed)) // comment line for reproducible inter-arrival times + // r := rand.New(rand.NewSource(randomSeed)) // comment line for reproducible inter-arrival times flag.Parse() outputDirectoryPath := filepath.Join(*outputPathFlag, strconv.FormatInt(time.Now().Unix(), 10))