Skip to content

Commit

Permalink
Merge branch 'master' into insert_vertex_only
Browse files Browse the repository at this point in the history
  • Loading branch information
cangfengzhs authored Dec 20, 2021
2 parents 6cc7c72 + e6ddeb2 commit 14a35f7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/clients/meta/MetaClient.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2451,7 +2451,8 @@ folly::Future<StatusOr<bool>> MetaClient::heartbeat() {
metaServerVersion_ = resp.get_meta_version();
return resp.get_code() == nebula::cpp2::ErrorCode::SUCCEEDED;
},
std::move(promise));
std::move(promise),
true);
return future;
}

Expand Down
2 changes: 1 addition & 1 deletion tests/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ install-deps:
install-nebula-py: install-deps
git clone --branch master https://github.com/vesoft-inc/nebula-python $(CURR_DIR)/nebula-python
cd $(CURR_DIR)/nebula-python \
&& pip3 install --user . -i $(PYPI_MIRROR)
&& pip3 install --user . -i $(PYPI_MIRROR) --upgrade
rm -rf $(CURR_DIR)/nebula-python

gherkin-fmt: install-deps
Expand Down

0 comments on commit 14a35f7

Please sign in to comment.