Skip to content

Commit 7c09843

Browse files
committed
Bump up vineyard version to v0.12.1
Signed-off-by: Tao He <[email protected]>
1 parent fe43664 commit 7c09843

File tree

6 files changed

+8
-7
lines changed

6 files changed

+8
-7
lines changed

CMakeLists.txt

Lines changed: 1 addition & 1 deletion
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 0)
5+
set(VINEYARD_PATCH_VERSION 1)
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

Lines changed: 2 additions & 2 deletions
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.0
27+
version: 0.12.1
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.0
32+
appVersion: 0.12.1
3333

setup.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[metadata]
2-
version = 0.12.0
2+
version = 0.12.1
33

44
[pycodestyle]
55
max_line_length = 88

src/common/util/config.h

Lines changed: 2 additions & 2 deletions
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 0
21+
#define VINEYARD_VERSION_PATCH 1
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.0"
26+
#define VINEYARD_VERSION_STRING "0.12.1"
2727

2828
#endif // SRC_COMMON_UTIL_CONFIG_H_

src/server/async/socket_server.cc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -446,6 +446,7 @@ bool SocketConnection::doGetRemoteBuffers(const json& root) {
446446
bool compress = false;
447447
std::vector<std::shared_ptr<Payload>> objects;
448448
std::string message_out;
449+
this->registered_.store(false);
449450

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

src/server/async/socket_server.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -219,7 +219,7 @@ class SocketConnection : public std::enable_shared_from_this<SocketConnection> {
219219
}
220220

221221
// whether the connection has been correctly "registered"
222-
std::atomic_bool registered_ = false;
222+
std::atomic_bool registered_;
223223

224224
stream_protocol::socket socket_;
225225
std::shared_ptr<VineyardServer> server_ptr_;

0 commit comments

Comments
 (0)