Lots of clean-ups and simplifications
[invirt/third/libt4.git] / handle.cc
index e998b3c..ff38a56 100644 (file)
--- a/handle.cc
+++ b/handle.cc
@@ -25,13 +25,11 @@ handle::safebind()
     rpcc *cl = new rpcc(dstsock);
     tprintf("handler_mgr::get_handle trying to bind...%s\n", h->m.c_str());
     int ret;
-    // Starting with lab 6, our test script assumes that the failure
-    // can be detected by paxos and rsm layer within few seconds. We have
-    // to set the timeout with a small value to support the assumption.
+    // The test script assumes that the failure can be detected by paxos and
+    // rsm layer within few seconds. We have to set the timeout with a small
+    // value to support the assumption.
     // 
-    // Note: with RPC_LOSSY=5, your lab would failed to pass the tests of
-    // lab 6 and lab 7 because the rpc layer may delay your RPC request, 
-    // and cause a time out failure. Please make sure RPC_LOSSY is set to 0.
+    // With RPC_LOSSY=5, tests may fail due to delays and time outs.
     ret = cl->bind(rpcc::to(1000));
     if (ret < 0) {
         tprintf("handle_mgr::get_handle bind failure! %s %d\n", h->m.c_str(), ret);