Skip to content

Commit ba2d083

Browse files
committed
Bump up vineyard version to v0.12.2
Fixes a bug introduced in 7c09843 Signed-off-by: Tao He <[email protected]>
1 parent 7c09843 commit ba2d083

File tree

7 files changed

+11
-10
lines changed

7 files changed

+11
-10
lines changed

.github/workflows/build-vineyardd-and-wheels-linux.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -154,9 +154,9 @@ jobs:
154154
run: |
155155
if [[ "${{ matrix.python }}" == "cp311-cp311" ]];
156156
then
157-
export base=vineyard-manylinux2014:20230115
157+
export base=manylinux2014:20230115
158158
else
159-
export base=vineyard-manylinux1:20220512
159+
export base=manylinux1:20220512
160160
fi
161161
162162
sudo docker build . -f docker/pypa/Dockerfile.manylinux1-wheel \

CMakeLists.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ cmake_minimum_required(VERSION 3.3)
22

33
set(VINEYARD_MAJOR_VERSION 0)
44
set(VINEYARD_MINOR_VERSION 12)
5-
set(VINEYARD_PATCH_VERSION 1)
5+
set(VINEYARD_PATCH_VERSION 2)
66
set(VINEYARD_VERSION ${VINEYARD_MAJOR_VERSION}.${VINEYARD_MINOR_VERSION}.${VINEYARD_PATCH_VERSION})
77

88
message(STATUS "Configuring and building vineyard version '${VINEYARD_VERSION}'.")

charts/vineyard-operator/Chart.yaml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ type: application
2424
# This is the chart version. This version number should be incremented each time you make changes
2525
# to the chart and its templates, including the app version.
2626
# Versions are expected to follow Semantic Versioning (https://semver.org/)
27-
version: 0.12.1
27+
version: 0.12.2
2828

2929
# This is the version number of the application being deployed. This version number should be
3030
# incremented each time you make changes to the application. Versions are not expected to
3131
# follow Semantic Versioning. They should reflect the version the application is using.
32-
appVersion: 0.12.1
32+
appVersion: 0.12.2
3333

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
version = 0.12.1
2+
version = 0.12.2
33

44
[pycodestyle]
55
max_line_length = 88

src/common/util/config.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ limitations under the License.
1818

1919
#define VINEYARD_VERSION_MAJOR 0
2020
#define VINEYARD_VERSION_MINOR 12
21-
#define VINEYARD_VERSION_PATCH 1
21+
#define VINEYARD_VERSION_PATCH 2
2222

2323
#define VINEYARD_VERSION \
2424
((VINEYARD_VERSION_MAJOR * 1000) + VINEYARD_VERSION_MINOR) * 1000 + \
2525
VINEYARD_VERSION_PATCH
26-
#define VINEYARD_VERSION_STRING "0.12.1"
26+
#define VINEYARD_VERSION_STRING "0.12.2"
2727

2828
#endif // SRC_COMMON_UTIL_CONFIG_H_

src/server/async/socket_server.cc

+2-1
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,8 @@ SocketConnection::SocketConnection(
5050
if (plasma_bulk_store != nullptr) {
5151
plasma_bulk_store_ = plasma_bulk_store->shared_from_this();
5252
}
53+
// initializing
54+
this->registered_.store(false);
5355
}
5456

5557
bool SocketConnection::Start() {
@@ -446,7 +448,6 @@ bool SocketConnection::doGetRemoteBuffers(const json& root) {
446448
bool compress = false;
447449
std::vector<std::shared_ptr<Payload>> objects;
448450
std::string message_out;
449-
this->registered_.store(false);
450451

451452
TRY_READ_REQUEST(ReadGetRemoteBuffersRequest, root, ids, unsafe, compress);
452453
RESPONSE_ON_ERROR(bulk_store_->GetUnsafe(ids, unsafe, objects));

test/remote_buffer_test.cc

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ void RemoteCreateTest(Client& ipc_client, RPCClient& rpc_client) {
5757
CHECK_EQ(local_buffer->data()[index], array_data[index]);
5858
}
5959

60-
LOG(INFO) << "Passed remote buffer (local create & remote get) tests...";
60+
LOG(INFO) << "Passed remote buffer (remote create & local get) tests...";
6161
}
6262

6363
void RemoteGetTest(Client& ipc_client, RPCClient& rpc_client) {

0 commit comments

Comments
 (0)