1
0
Fork 0

Merge pull request #608 from rqlite/features_status

Add features list to status output
master
Philip O'Toole 5 years ago committed by GitHub
commit 68271534ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,6 +3,7 @@ This release uses a new Raft consensus version, with the move to Hashicorp Raft
### New features
- [PR #595](https://github.com/rqlite/rqlite/pull/595): rqlite CLI prints Welcome message on startup.
- [PR #608](https://github.com/rqlite/rqlite/pull/608): Add features list to status output.
### Implementation changes and bug fixes
- [PR #597](https://github.com/rqlite/rqlite/pull/597): Don't ignore any Join error, instead return it.

@ -43,6 +43,7 @@ var (
commit = "unknown"
branch = "unknown"
buildtime = "unknown"
features = []string{}
)
const (

Loading…
Cancel
Save