Skip to content

Commit 50d3570

Browse files
authored
Merge pull request #26 from vagharsh/dev-b3
v7.5.1
2 parents 69226e5 + dc42ed5 commit 50d3570

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,8 @@ a simple basic `token` is used to authenticate to import the data through `backe
154154
155155
Release Notes
156156
---------
157-
[v7.5](https://github.com/vagharsh/consul-tree/pull/23/commits/6d6489fadafb6b2a0d2faed67f4b4807f85766a1)
158-
- Updated : instead of using the standard CURL for export now it uses the consul binary which is very fast.
157+
[v7.5.1]()
158+
- Fixed : Consul client not executing under linux.
159159
160160
Release notes are available [here](release.md).
161161

backend/functions.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ function bulkExportFn($consul, $paths){
3737
$decodedPaths = json_decode($paths);
3838
$newArray = [];
3939

40-
$res = shell_exec("consul kv export -http-addr=" . $consul . " /");
40+
$res = shell_exec("./consul kv export -http-addr=" . $consul . " /");
4141
$array = json_decode($res);
4242

4343
foreach ($array as $item){

backend/version

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
v7.5
1+
v7.5.1

release.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
Release Notes
22
---------
3+
[v7.5.1]()
4+
- Fixed : Consul client not executing under linux.
5+
36
[v7.5](https://github.com/vagharsh/consul-tree/pull/23/commits/6d6489fadafb6b2a0d2faed67f4b4807f85766a1)
47
- Updated : instead of using the standard CURL for export now it uses the consul binary which is very fast.
58

0 commit comments

Comments
 (0)