Return-Path: Delivered-To: apmail-hadoop-zookeeper-commits-archive@minotaur.apache.org Received: (qmail 38655 invoked from network); 27 Apr 2010 22:46:08 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 27 Apr 2010 22:46:08 -0000 Received: (qmail 97273 invoked by uid 500); 27 Apr 2010 22:46:08 -0000 Delivered-To: apmail-hadoop-zookeeper-commits-archive@hadoop.apache.org Received: (qmail 97243 invoked by uid 500); 27 Apr 2010 22:46:07 -0000 Mailing-List: contact zookeeper-commits-help@hadoop.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: zookeeper-dev@ Delivered-To: mailing list zookeeper-commits@hadoop.apache.org Received: (qmail 97235 invoked by uid 99); 27 Apr 2010 22:46:07 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Apr 2010 22:46:07 +0000 X-ASF-Spam-Status: No, hits=-1393.3 required=10.0 tests=ALL_TRUSTED,AWL X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 27 Apr 2010 22:46:05 +0000 Received: by eris.apache.org (Postfix, from userid 65534) id B956E238899B; Tue, 27 Apr 2010 22:45:23 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r938709 - in /hadoop/zookeeper/trunk: CHANGES.txt src/c/include/zookeeper.h src/c/src/zookeeper.c src/contrib/zkpython/src/c/pyzk_docstrings.h Date: Tue, 27 Apr 2010 22:45:23 -0000 To: zookeeper-commits@hadoop.apache.org From: phunt@apache.org X-Mailer: svnmailer-1.0.8 Message-Id: <20100427224523.B956E238899B@eris.apache.org> Author: phunt Date: Tue Apr 27 22:45:23 2010 New Revision: 938709 URL: http://svn.apache.org/viewvc?rev=938709&view=rev Log: ZOOKEEPER-754. numerous misspellings "succesfully" Modified: hadoop/zookeeper/trunk/CHANGES.txt hadoop/zookeeper/trunk/src/c/include/zookeeper.h hadoop/zookeeper/trunk/src/c/src/zookeeper.c hadoop/zookeeper/trunk/src/contrib/zkpython/src/c/pyzk_docstrings.h Modified: hadoop/zookeeper/trunk/CHANGES.txt URL: http://svn.apache.org/viewvc/hadoop/zookeeper/trunk/CHANGES.txt?rev=938709&r1=938708&r2=938709&view=diff ============================================================================== --- hadoop/zookeeper/trunk/CHANGES.txt (original) +++ hadoop/zookeeper/trunk/CHANGES.txt Tue Apr 27 22:45:23 2010 @@ -32,6 +32,9 @@ BUGFIXES: ZOOKEEPER-734. QuorumPeerTestBase.java and ZooKeeperServerMainTest.java do not handle windows path correctly (Vishal K via phunt) + ZOOKEEPER-754. numerous misspellings "succesfully" + (Savu Andrei via phunt) + IMPROVEMENTS: ZOOKEEPER-724. Improve junit test integration - log harness information (phunt via mahadev) Modified: hadoop/zookeeper/trunk/src/c/include/zookeeper.h URL: http://svn.apache.org/viewvc/hadoop/zookeeper/trunk/src/c/include/zookeeper.h?rev=938709&r1=938708&r2=938709&view=diff ============================================================================== --- hadoop/zookeeper/trunk/src/c/include/zookeeper.h (original) +++ hadoop/zookeeper/trunk/src/c/include/zookeeper.h Tue Apr 27 22:45:23 2010 @@ -605,7 +605,7 @@ ZOOAPI int zoo_state(zhandle_t *zh); * of the Create Flags * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the parent node does not exist. * ZNODEEXISTS the node already exists * ZNOAUTH the client does not have permission. @@ -632,7 +632,7 @@ ZOOAPI int zoo_acreate(zhandle_t *zh, co * If -1 is used the version check will not take place. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADVERSION expected version does not match actual version. @@ -658,7 +658,7 @@ ZOOAPI int zoo_adelete(zhandle_t *zh, co * exist. This allows clients to watch for nodes to appear. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when the @@ -690,7 +690,7 @@ ZOOAPI int zoo_aexists(zhandle_t *zh, co * is associated with the given instance of the watcher only. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when the @@ -714,7 +714,7 @@ ZOOAPI int zoo_awexists(zhandle_t *zh, c * the client if the node changes. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when @@ -743,7 +743,7 @@ ZOOAPI int zoo_aget(zhandle_t *zh, const * is associated with the given instance of the watcher only. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when @@ -772,7 +772,7 @@ ZOOAPI int zoo_awget(zhandle_t *zh, cons * immediately and invoke the completion routine when the request completes. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADVERSION expected version does not match actual version. @@ -796,7 +796,7 @@ ZOOAPI int zoo_aset(zhandle_t *zh, const * the client if the node changes. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when @@ -825,7 +825,7 @@ ZOOAPI int zoo_aget_children(zhandle_t * * is associated with the given instance of the watcher only. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when @@ -851,7 +851,7 @@ ZOOAPI int zoo_awget_children(zhandle_t * the client if the node changes. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when @@ -882,7 +882,7 @@ ZOOAPI int zoo_aget_children2(zhandle_t * is associated with the given instance of the watcher only. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when @@ -904,7 +904,7 @@ ZOOAPI int zoo_awget_children2(zhandle_t * separating ancestors of the node. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when @@ -927,7 +927,7 @@ ZOOAPI int zoo_async(zhandle_t *zh, cons * separating ancestors of the node. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * \param data the data that will be passed to the completion routine when @@ -950,7 +950,7 @@ ZOOAPI int zoo_aget_acl(zhandle_t *zh, c * \param buflen the number of bytes from buffer to write. * \param completion the routine to invoke when the request completes. The completion * will be triggered with one of the following codes passed in as the rc argument: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZINVALIDACL invalid ACL specified @@ -1068,7 +1068,7 @@ ZOOAPI void zoo_deterministic_conn_order * new node in the server will not be affected by the truncation. * The path string will always be null-terminated. * \return one of the following codes are returned: - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the parent node does not exist. * ZNODEEXISTS the node already exists * ZNOAUTH the client does not have permission. @@ -1091,7 +1091,7 @@ ZOOAPI int zoo_create(zhandle_t *zh, con * actual version of the node does not match the expected version. * If -1 is used the version check will not take place. * \return one of the following values is returned. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADVERSION expected version does not match actual version. @@ -1114,7 +1114,7 @@ ZOOAPI int zoo_delete(zhandle_t *zh, con * exist. This allows clients to watch for nodes to appear. * \param the return stat value of the node. * \return return code of the function call. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADARGUMENTS - invalid input parameters @@ -1140,7 +1140,7 @@ ZOOAPI int zoo_exists(zhandle_t *zh, con * is associated with the given instance of the watcher only. * \param the return stat value of the node. * \return return code of the function call. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADARGUMENTS - invalid input parameters @@ -1163,7 +1163,7 @@ ZOOAPI int zoo_wexists(zhandle_t *zh, co * It'll be set to the actual data length upon return. If the data is NULL, length is -1. * \param stat if not NULL, will hold the value of stat for the path on return. * \return return value of the function call. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADARGUMENTS - invalid input parameters @@ -1192,7 +1192,7 @@ ZOOAPI int zoo_get(zhandle_t *zh, const * It'll be set to the actual data length upon return. If the data is NULL, length is -1. * \param stat if not NULL, will hold the value of stat for the path on return. * \return return value of the function call. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADARGUMENTS - invalid input parameters @@ -1217,7 +1217,7 @@ ZOOAPI int zoo_wget(zhandle_t *zh, const * the actual version of the node does not match the expected version. If -1 is * used the version check will not take place. * \return the return code for the function call. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADVERSION expected version does not match actual version. @@ -1244,7 +1244,7 @@ ZOOAPI int zoo_set(zhandle_t *zh, const * used the version check will not take place. * \param stat if not NULL, will hold the value of stat for the path on return. * \return the return code for the function call. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADVERSION expected version does not match actual version. @@ -1265,7 +1265,7 @@ ZOOAPI int zoo_set2(zhandle_t *zh, const * the client if the node changes. * \param strings return value of children paths. * \return the return code of the function. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADARGUMENTS - invalid input parameters @@ -1291,7 +1291,7 @@ ZOOAPI int zoo_get_children(zhandle_t *z * is associated with the given instance of the watcher only. * \param strings return value of children paths. * \return the return code of the function. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADARGUMENTS - invalid input parameters @@ -1315,7 +1315,7 @@ ZOOAPI int zoo_wget_children(zhandle_t * * \param strings return value of children paths. * \param stat return value of node stat. * \return the return code of the function. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADARGUMENTS - invalid input parameters @@ -1344,7 +1344,7 @@ ZOOAPI int zoo_get_children2(zhandle_t * * \param strings return value of children paths. * \param stat return value of node stat. * \return the return code of the function. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADARGUMENTS - invalid input parameters @@ -1364,7 +1364,7 @@ ZOOAPI int zoo_wget_children2(zhandle_t * \param acl the return value of acls on the path. * \param stat returns the stat of the path specified. * \return the return code for the function call. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZBADARGUMENTS - invalid input parameters @@ -1383,7 +1383,7 @@ ZOOAPI int zoo_get_acl(zhandle_t *zh, co * \param version the expected version of the path. * \param acl the acl to be set on the path. * \return the return code for the function call. - * ZOK operation completed succesfully + * ZOK operation completed successfully * ZNONODE the node does not exist. * ZNOAUTH the client does not have permission. * ZINVALIDACL invalid ACL specified Modified: hadoop/zookeeper/trunk/src/c/src/zookeeper.c URL: http://svn.apache.org/viewvc/hadoop/zookeeper/trunk/src/c/src/zookeeper.c?rev=938709&r1=938708&r2=938709&view=diff ============================================================================== --- hadoop/zookeeper/trunk/src/c/src/zookeeper.c (original) +++ hadoop/zookeeper/trunk/src/c/src/zookeeper.c Tue Apr 27 22:45:23 2010 @@ -2844,7 +2844,7 @@ int flush_send_queue(zhandle_t*zh, int t rc = ZCONNECTIONLOSS; break; } - // if the buffer has been sent succesfully, remove it from the queue + // if the buffer has been sent successfully, remove it from the queue if (rc > 0) remove_buffer(&zh->to_send); gettimeofday(&zh->last_send, 0); Modified: hadoop/zookeeper/trunk/src/contrib/zkpython/src/c/pyzk_docstrings.h URL: http://svn.apache.org/viewvc/hadoop/zookeeper/trunk/src/contrib/zkpython/src/c/pyzk_docstrings.h?rev=938709&r1=938708&r2=938709&view=diff ============================================================================== --- hadoop/zookeeper/trunk/src/contrib/zkpython/src/c/pyzk_docstrings.h (original) +++ hadoop/zookeeper/trunk/src/contrib/zkpython/src/c/pyzk_docstrings.h Tue Apr 27 22:45:23 2010 @@ -40,7 +40,7 @@ const char pyzk_acreate_doc[] = " of the Create Flags\n" " completion: the routine to invoke when the request completes. The completion\n" "will be triggered with one of the following codes passed in as the rc argument:\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the parent node does not exist.\n" "NODEEXISTS the node already exists\n" "NOAUTH the client does not have permission.\n" @@ -74,7 +74,7 @@ static const char pyzk_adelete_doc[] = " If -1 is used the version check will not take place. \n" " completion: the routine to invoke when the request completes. The completion\n" "will be triggered with one of the following codes passed in as the rc argument:\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" "BADVERSION expected version does not match actual version.\n" @@ -98,7 +98,7 @@ static const char pyzk_aexists_doc[] = "\n" " completion: the routine to invoke when the request completes. The completion\n" "will be triggered with one of the following codes passed in as the rc argument:\n" -" OK operation completed succesfully\n" +" OK operation completed successfully\n" " NONODE the node does not exist.\n" " NOAUTH the client does not have permission.\n" " data the data that will be passed to the completion routine when the \n" @@ -120,7 +120,7 @@ static const char pyzk_aget_doc[] = "the client if the node changes.\n" " completion: the routine to invoke when the request completes. The completion\n" "will be triggered with one of the following codes passed in as the rc argument:\n" -" OK operation completed succesfully\n" +" OK operation completed successfully\n" " NONODE the node does not exist.\n" " NOAUTH the client does not have permission.\n" " data the data that will be passed to the completion routine when \n" @@ -148,7 +148,7 @@ static const char pyzk_aset_doc[] = "immediately and invoke the completion routine when the request completes.\n" " completion the routine to invoke when the request completes. The completion\n" "will be triggered with one of the following codes passed in as the rc argument:\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" "BADVERSION expected version does not match actual version.\n" @@ -175,7 +175,7 @@ static const char pyzk_aget_children_doc "\n" " completion the routine to invoke when the request completes. The completion\n" "will be triggered with one of the following codes passed in as the rc argument:\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" "\n" @@ -192,7 +192,7 @@ static const char pyzk_async_doc[] = "separating ancestors of the node.\n" " completion the routine to invoke when the request completes. The completion\n" "will be triggered with one of the following codes passed in as the rc argument:\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" "\n" @@ -211,7 +211,7 @@ const static char pyzk_aget_acl_doc[] = "(Subsequent parameters are optional)\n" " completion: the routine to invoke when the request completes. The completion\n" "will be triggered with one of the following codes passed in as the rc argument:\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" "\n" @@ -231,7 +231,7 @@ const char pyzk_aset_acl_doc[] = " buffer: the buffer holding the acls to be written to the node.\n" " completion: the routine to invoke when the request completes. The completion\n" "will be triggered with one of the following codes passed in as the rc argument:\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" "INVALIDACL invalid ACL specified\n" @@ -373,7 +373,7 @@ static const char pyzk_delete_doc[] = "\n" "RETURNS:\n" "One of the following values is returned.\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" "BADVERSION expected version does not match actual version.\n" @@ -398,7 +398,7 @@ static const char pyzk_exists_doc[] = "RETURNS:\n" " the return stat value of the node.\n" "EXCEPTIONS:\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" "BADARGUMENTS - invalid input parameters\n" @@ -445,7 +445,7 @@ static const char pyzk_set_doc[] = "\n" "RETURNS:\n" " the return code for the function call.\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "EXCEPTIONS:\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" @@ -483,7 +483,7 @@ static const char pyzk_set_acl_doc[] = " acl: the acl to be set on the path. \n" "\n" "RETURNS:\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "EXCEPTIONS:\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" @@ -533,7 +533,7 @@ static const char pyzk_set2_doc[] = "\n" "RETURNS:\n" " the stat structure for the target znode\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "EXCEPTIONS:\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" @@ -584,7 +584,7 @@ static const char pyzk_get_doc[] = " the minimum of bufferlen and the true length of the znode's data. \n" "RETURNS:\n" " the data associated with the node\n" -"OK operation completed succesfully\n" +"OK operation completed successfully\n" "NONODE the node does not exist.\n" "NOAUTH the client does not have permission.\n" "BADARGUMENTS - invalid input parameters\n"