diff options
author | Marco Capitani <m.capitani@nextworks.it> | 2017-05-11 11:32:11 +0200 |
---|---|---|
committer | Marco Capitani <m.capitani@nextworks.it> | 2017-05-11 11:32:11 +0200 |
commit | e78c92993406bc4ca24a1c38db7d3195901b28d9 (patch) | |
tree | 57d648bd35bd6592996438bff550c50349ce5800 /examples | |
parent | ea1a4462a8b7a2fb7404e4652e0806795ba96863 (diff) | |
download | rumba-e78c92993406bc4ca24a1c38db7d3195901b28d9.tar.gz rumba-e78c92993406bc4ca24a1c38db7d3195901b28d9.zip |
Storyboard: small fixes to API
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/example.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/example.py b/examples/example.py index 7fe130d..a3fe5ec 100755 --- a/examples/example.py +++ b/examples/example.py @@ -44,7 +44,7 @@ print(exp) try: exp.swap_in() exp.bootstrap_prototype() - c1 = ClientBinary("rinaperf", options = "-t perf -s 1000 -c 10000") + c1 = Client("rinaperf", options ="-t perf -s 1000 -c 10000") s1 = Server("rinaperf", arrival_rate=2, mean_duration=5, options = "-l", nodes = [a], clients = [c1]) sb = StoryBoard(exp, 3600, servers = [s1]) sb.start() |