diff options
Diffstat (limited to 'cmd/dexcon-simulation-with-scheduler')
-rw-r--r-- | cmd/dexcon-simulation-with-scheduler/main.go | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/cmd/dexcon-simulation-with-scheduler/main.go b/cmd/dexcon-simulation-with-scheduler/main.go index 3ed71c3..b9f5ec3 100644 --- a/cmd/dexcon-simulation-with-scheduler/main.go +++ b/cmd/dexcon-simulation-with-scheduler/main.go @@ -16,10 +16,9 @@ import ( ) var ( - configFile = flag.String("config", "", "path to simulation config file") - cpuprofile = flag.String("cpuprofile", "", "write cpu profile to `file`") - memprofile = flag.String("memprofile", "", "write memory profile to `file`") - workerCount = flag.Int("workercount", 1, "count of concurrent workers") + configFile = flag.String("config", "", "path to simulation config file") + cpuprofile = flag.String("cpuprofile", "", "write cpu profile to `file`") + memprofile = flag.String("memprofile", "", "write memory profile to `file`") ) func main() { @@ -72,7 +71,7 @@ func main() { } } // Run the simulation. - sch.Run(*workerCount) + sch.Run(cfg.Scheduler.WorkerNum) if err = integration.VerifyApps(apps); err != nil { log.Fatal("consensus result is not incorrect: ", err) } |