Fixed the mis-spelling of rendezvous.
Signed-off-by: Travis Miller <raphtee@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@3320 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/server/samples/profilertest.srv b/server/samples/profilertest.srv
index 7f9721e..b3384e0 100644
--- a/server/samples/profilertest.srv
+++ b/server/samples/profilertest.srv
@@ -28,19 +28,19 @@
# wait until the profilers have started
sync_bar = barrier("PROF_MASTER", "sync_profilers",
timeout, port=63100)
- sync_bar.rendevous_servers("PROF_MASTER", *machines)
+ sync_bar.rendezvous_servers("PROF_MASTER", *machines)
def start_profilers(machines, timeout = 180):
# wait until the profilers have started
start_bar = barrier("PROF_MASTER", "start_profilers",
timeout, port=63100)
- start_bar.rendevous_servers("PROF_MASTER", *machines)
+ start_bar.rendezvous_servers("PROF_MASTER", *machines)
def stop_profilers(machines, timeout = 120):
stop_bar = barrier("PROF_MASTER", "stop_profilers", timeout, port=63100)
- stop_bar.rendevous_servers("PROF_MASTER", *machines)
+ stop_bar.rendezvous_servers("PROF_MASTER", *machines)
def server_sleep_test(seconds):
diff --git a/server/standalone_profiler.py b/server/standalone_profiler.py
index f681ff4..cbfda4e 100644
--- a/server/standalone_profiler.py
+++ b/server/standalone_profiler.py
@@ -34,16 +34,16 @@
def wait_for_profilers(machines, timeout = 300):
sb = barrier.barrier("PROF_MASTER", "sync_profilers",
timeout, port=63100)
- sb.rendevous_servers("PROF_MASTER", *machines)
+ sb.rendezvous_servers("PROF_MASTER", *machines)
def start_profilers(machines, timeout = 120):
sb = barrier.barrier("PROF_MASTER", "start_profilers",
timeout, port=63100)
- sb.rendevous_servers("PROF_MASTER", *machines)
+ sb.rendezvous_servers("PROF_MASTER", *machines)
def stop_profilers(machines, timeout = 120):
sb = barrier.barrier("PROF_MASTER", "stop_profilers",
timeout, port=63100)
- sb.rendevous_servers("PROF_MASTER", *machines)
+ sb.rendezvous_servers("PROF_MASTER", *machines)