diff options
Diffstat (limited to 'scripts/scalability/makefile')
-rw-r--r-- | scripts/scalability/makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/scripts/scalability/makefile b/scripts/scalability/makefile index e99717fc..0a248d37 100644 --- a/scripts/scalability/makefile +++ b/scripts/scalability/makefile @@ -3,6 +3,7 @@ LOGFILE = /tmp/test_controller.log TACFILE = ./test_controller/server/server.tac HTTP_PORT = 7001 RESOURCE = cpu +CREATE = 1000 start: twistd --pidfile=$(PIDFILE) --logfile=$(LOGFILE) --python=$(TACFILE) @@ -25,4 +26,4 @@ get: curl -X GET http://127.0.0.1:$(HTTP_PORT)/$(RESOURCE) setup: - curl -X POST http://127.0.0.1:$(HTTP_PORT)/setup + curl -X POST http://127.0.0.1:$(HTTP_PORT)/setup?create=$(CREATE) |