Skip to content

Commit

Permalink
Merge pull request #233 from rqlite/tweak_url_help
Browse files Browse the repository at this point in the history
Tweak help output for latest rqlite commands
  • Loading branch information
otoolep authored Nov 30, 2016
2 parents cde8c16 + 334e67c commit c7385ae
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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.
4 changes: 2 additions & 2 deletions cmd/rqlite/main.go
Original file line number Diff line number Diff line change
@@ -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() {

0 comments on commit c7385ae

Please sign in to comment.