You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@zookeeper.apache.org by sy...@apache.org on 2022/12/18 17:59:57 UTC

[zookeeper] branch branch-3.6.4 updated (3945e51d3 -> 30eef4aec)

This is an automated email from the ASF dual-hosted git repository.

symat pushed a change to branch branch-3.6.4
in repository https://gitbox.apache.org/repos/asf/zookeeper.git


    from 3945e51d3 update release notes after including ZOOKEEPER-4641 to 3.6.4
     new ff5d12f89 ZOOKEEPER-4654: Fix C client test compilation error in Util.cc.
     new 30eef4aec update release notes after including ZOOKEEPER-4654 to 3.6.4

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 zookeeper-client/zookeeper-client-c/tests/Util.cc          | 2 ++
 zookeeper-docs/src/main/resources/markdown/releasenotes.md | 1 +
 2 files changed, 3 insertions(+)


[zookeeper] 02/02: update release notes after including ZOOKEEPER-4654 to 3.6.4

Posted by sy...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

symat pushed a commit to branch branch-3.6.4
in repository https://gitbox.apache.org/repos/asf/zookeeper.git

commit 30eef4aec422c7daafdba94a9c9ef810ad5c2f5a
Author: Mate Szalay-Beko <sy...@apache.org>
AuthorDate: Sun Dec 18 18:59:26 2022 +0100

    update release notes after including ZOOKEEPER-4654 to 3.6.4
---
 zookeeper-docs/src/main/resources/markdown/releasenotes.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/zookeeper-docs/src/main/resources/markdown/releasenotes.md b/zookeeper-docs/src/main/resources/markdown/releasenotes.md
index 5b1a31d34..1f737a948 100644
--- a/zookeeper-docs/src/main/resources/markdown/releasenotes.md
+++ b/zookeeper-docs/src/main/resources/markdown/releasenotes.md
@@ -38,6 +38,7 @@ limitations under the License.
 * [ZOOKEEPER-4515](https://issues.apache.org/jira/browse/ZOOKEEPER-4515) - ZK Cli quit command always logs error
 * [ZOOKEEPER-4516](https://issues.apache.org/jira/browse/ZOOKEEPER-4516) - checkstyle:check  is failing
 * [ZOOKEEPER-4537](https://issues.apache.org/jira/browse/ZOOKEEPER-4537) - Race between SyncThread and CommitProcessor thread
+* [ZOOKEEPER-4654](https://issues.apache.org/jira/browse/ZOOKEEPER-4654) - Fix C client test compilation error in Util.cc.
 
                 
 ## Improvement


[zookeeper] 01/02: ZOOKEEPER-4654: Fix C client test compilation error in Util.cc.

Posted by sy...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

symat pushed a commit to branch branch-3.6.4
in repository https://gitbox.apache.org/repos/asf/zookeeper.git

commit ff5d12f892e612b9b009b9af5e682743412bdbdc
Author: Chris Nauroth <cn...@apache.org>
AuthorDate: Sun Dec 18 18:37:53 2022 +0100

    ZOOKEEPER-4654: Fix C client test compilation error in Util.cc.
    
    Author: Chris Nauroth <cn...@apache.org>
    
    Reviewers: Enrico Olivelli <eo...@apache.org>, Mate Szalay-Beko <sy...@apache.org>
    
    Closes #1967 from cnauroth/ZOOKEEPER-4654
    
    (cherry picked from commit 9a43bc95aa8c95808d585b7aafb375a1e438a581)
    Signed-off-by: Mate Szalay-Beko <sy...@apache.org>
---
 zookeeper-client/zookeeper-client-c/tests/Util.cc | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/zookeeper-client/zookeeper-client-c/tests/Util.cc b/zookeeper-client/zookeeper-client-c/tests/Util.cc
index 2b9da84eb..7b49ecac5 100644
--- a/zookeeper-client/zookeeper-client-c/tests/Util.cc
+++ b/zookeeper-client/zookeeper-client-c/tests/Util.cc
@@ -16,6 +16,8 @@
  * limitations under the License.
  */
 
+#include <time.h>
+
 #include "Util.h"
 #include "string.h"