diff --git a/CHANGELOG.md b/CHANGELOG.md index 95bb4f57..bf0f2402 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,6 @@ ## 3.8.0 (unreleased) - [PR #230](https://github.com/rqlite/rqlite/pull/230): Move Chinook test data to idiomatic testdata directory. -- [PR #232](https://github.com/rqlite/rqlite/pull/232): rqlite CLI now supports accessing secured rqlited nodes. Thanks @tych0 +- [PR #232](https://github.com/rqlite/rqlite/pull/232), [PR #233](https://github.com/rqlite/rqlite/pull/233): rqlite CLI now supports accessing secured rqlited nodes. Thanks @tych0 ## 3.7.0 (November 24th 2016) - With this release rqlite is moving to Go 1.7. diff --git a/cmd/rqlite/main.go b/cmd/rqlite/main.go index 0df6d28a..ae382463 100644 --- a/cmd/rqlite/main.go +++ b/cmd/rqlite/main.go @@ -19,8 +19,8 @@ type argT struct { Protocol string `cli:"s,scheme" usage:"protocol scheme (http or https)" dft:"http"` Host string `cli:"H,host" usage:"rqlited host address" dft:"127.0.0.1"` Port uint16 `cli:"p,port" usage:"rqlited host port" dft:"4001"` - Prefix string `cli:"P,prefix" usage:"rqlited HTTP prefix" dft:"/"` - Insecure bool `cli:"insecure" usage:"allow invalid https certs" dft:"false"` + Prefix string `cli:"P,prefix" usage:"rqlited HTTP URL prefix" dft:"/"` + Insecure bool `cli:"insecure" usage:"do not verify rqlited HTTPS certificate" dft:"false"` } func main() {