diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2018-06-06 16:13:35 +0200 |
---|---|---|
committer | Sander Vrijders <sander.vrijders@ugent.be> | 2018-06-06 16:13:35 +0200 |
commit | ffb6be1dae7bebf4596336acdefccbfe885bc8a9 (patch) | |
tree | be46105057e1fee9107db117766c98a540971070 /examples | |
parent | 28d34549ecf3a6fe5dde672569b7e8f5e05f1a5e (diff) | |
download | rumba-ffb6be1dae7bebf4596336acdefccbfe885bc8a9.tar.gz rumba-ffb6be1dae7bebf4596336acdefccbfe885bc8a9.zip |
prototypes: Switch register and bind operation
This switches the register and bind operations in the ouroboros
prototype, to avoid a race condition when starting a server very fast.
Diffstat (limited to 'examples')
-rwxr-xr-x | examples/docker-ouroboros.py | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/examples/docker-ouroboros.py b/examples/docker-ouroboros.py index 1c6009c..ce30fdb 100755 --- a/examples/docker-ouroboros.py +++ b/examples/docker-ouroboros.py @@ -53,8 +53,7 @@ for i in range(0, args.nodes): nodes[0].add_dif(shim_prev) nodes[0].add_dif_registration(n01, shim_prev) -tb = docker.Testbed(exp_name = "ouroboros", - base_image = "ouroborosrumba/prototype") +tb = docker.Testbed(exp_name = "ouroboros") exp = our.Experiment(tb, nodes = nodes) |