This is an automated email from the ASF dual-hosted git repository.
zhaijia pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/bookkeeper.git
The following commit(s) were added to refs/heads/master by this push:
new cbf6668 ISSUE #699: Docker healthchek is failing #699
cbf6668 is described below
commit cbf6668af320135af65c4590385a29fcf6d8d6c8
Author: Antonio Ojea <[email protected]>
AuthorDate: Mon Nov 6 22:47:17 2017 +0800
ISSUE #699: Docker healthchek is failing #699
The docker healthcheck is failing because it's trying to run the
bookkeeper command without specifying a path.
Adding the full path to the command fix this issue.
Signed-off-by: Antonio Ojea <antonio.ojea.garciagmail.com>
Descriptions of the changes in this PR:
(PR description content here)...
Author: Antonio Ojea <[email protected]>
Reviewers: Jia Zhai <None>, Matteo Merli <[email protected]>
This closes #700 from itsuugo/issue#699, closes #699, closes #699
---
docker/scripts/healthcheck.sh | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docker/scripts/healthcheck.sh b/docker/scripts/healthcheck.sh
index 87ce09d..91e13f0 100755
--- a/docker/scripts/healthcheck.sh
+++ b/docker/scripts/healthcheck.sh
@@ -25,4 +25,4 @@
set -x -e -u
# Sanity check that creates a ledger, writes a few entries, reads them and
deletes the ledger.
-bookkeeper shell bookiesanity
+/opt/bookkeeper/bin/bookkeeper shell bookiesanity
--
To stop receiving notification emails like this one, please contact
['"[email protected]" <[email protected]>'].