X-Git-Url: http://xvm.mit.edu/gitweb/invirt/third/libt4.git/blobdiff_plain/a4175b2e216a20b86cc872dea8a08005c60617a5..0989f6feac9c8e83847165c4abee5273463eaa63:/handle.cc diff --git a/handle.cc b/handle.cc index e998b3c..ff38a56 100644 --- 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);