This is an automated email from the ASF dual-hosted git repository.
junchao pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-resilientdb.git
The following commit(s) were added to refs/heads/master by this push:
new a6b6bbcf change the script path in start_contract_service.sh
a6b6bbcf is described below
commit a6b6bbcf2ed536ce6f7aa0dca74ea757523fb4f6
Author: cjcchen <[email protected]>
AuthorDate: Wed Feb 14 18:48:40 2024 +0000
change the script path in start_contract_service.sh
---
WORKSPACE | 4 ++--
service/tools/contract/service_tools/start_contract_service.sh | 6 +++---
2 files changed, 5 insertions(+), 5 deletions(-)
diff --git a/WORKSPACE b/WORKSPACE
index 317fefbf..f285e83f 100644
--- a/WORKSPACE
+++ b/WORKSPACE
@@ -198,8 +198,8 @@ http_archive(
http_archive(
name = "pybind11_bazel",
- strip_prefix = "pybind11_bazel-master",
- urls = ["https://github.com/pybind/pybind11_bazel/archive/master.zip"],
+ strip_prefix = "pybind11_bazel-2.11.1.bzl.1",
+ urls =
["https://github.com/pybind/pybind11_bazel/archive/refs/tags/v2.11.1.bzl.1.zip"]
)
http_archive(
diff --git a/service/tools/contract/service_tools/start_contract_service.sh
b/service/tools/contract/service_tools/start_contract_service.sh
index 7eccb023..dad26d75 100755
--- a/service/tools/contract/service_tools/start_contract_service.sh
+++ b/service/tools/contract/service_tools/start_contract_service.sh
@@ -1,11 +1,11 @@
-killall -9 contract_server
+killall -9 contract_service
-SERVER_PATH=./bazel-bin/service/contract/server/contract_server
+SERVER_PATH=./bazel-bin/service/contract/contract_service
SERVER_CONFIG=service/tools/config/server/server.config
WORK_PATH=$PWD
CERT_PATH=${WORK_PATH}/service/tools/data/cert/
-bazel build //service/contract/server:contract_server
+bazel build //service/contract:contract_service
nohup $SERVER_PATH $SERVER_CONFIG $CERT_PATH/node1.key.pri
$CERT_PATH/cert_1.cert > server0.log &
nohup $SERVER_PATH $SERVER_CONFIG $CERT_PATH/node2.key.pri
$CERT_PATH/cert_2.cert > server1.log &
nohup $SERVER_PATH $SERVER_CONFIG $CERT_PATH/node3.key.pri
$CERT_PATH/cert_3.cert > server2.log &