From e752217b68f235010c1f7e85029d18383767f256 Mon Sep 17 00:00:00 2001 From: juliannguyen4 <109386615+juliannguyen4@users.noreply.github.com> Date: Tue, 22 Aug 2023 10:45:25 -0700 Subject: [PATCH] [CLIENT-2344] Prevent a seg fault when client.info_all() is called after a node is destroyed (#479) * Update C client to 6.4.4 --- VERSION | 2 +- aerospike-client-c | 2 +- src/main/aerospike.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/VERSION b/VERSION index 4331a3049..6c3e91de8 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -14.0.0-rc.1 +14.0.0-rc.2 diff --git a/aerospike-client-c b/aerospike-client-c index d1f5afbf0..a45aa32de 160000 --- a/aerospike-client-c +++ b/aerospike-client-c @@ -1 +1 @@ -Subproject commit d1f5afbf09349dbeb5a9dda877d906ea5820a236 +Subproject commit a45aa32de45c145ea0d0381b73f5df3d74648557 diff --git a/src/main/aerospike.c b/src/main/aerospike.c index 96a13e95d..8cb0c8c81 100644 --- a/src/main/aerospike.c +++ b/src/main/aerospike.c @@ -138,7 +138,7 @@ static int Aerospike_Clear(PyObject *aerospike) PyMODINIT_FUNC PyInit_aerospike(void) { - const char version[] = "14.0.0-rc.1"; + const char version[] = "14.0.0-rc.2"; // Makes things "thread-safe" Py_Initialize(); int i = 0;