diff options
Diffstat (limited to 'examples/two-layers.py')
-rwxr-xr-x | examples/two-layers.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/two-layers.py b/examples/two-layers.py index d2e4007..c375088 100755 --- a/examples/two-layers.py +++ b/examples/two-layers.py @@ -58,7 +58,7 @@ print(exp) with ExperimentManager(exp): exp.swap_in() exp.bootstrap_prototype() - sb = StoryBoard(exp, duration=15, servers=[]) + sb = StoryBoard(experiment=exp, duration=15, servers=[]) sb.run_command(7.5, a, 'echo "7.5 secs in. We are at $(hostname)"') sb.run_command(12, b, 'echo "12 secs in. We are at $(hostname)"') sb.start() |