1
0
Fork 0

Merge pull request #233 from rqlite/tweak_url_help

Tweak help output for latest rqlite commands
master
Philip O'Toole 8 years ago committed by GitHub
commit c7385aebbb

@ -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.

@ -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() {

Loading…
Cancel
Save