Skip to content

Commit

Permalink
Remove limit on the couchdb listing (#4149)
Browse files Browse the repository at this point in the history
  • Loading branch information
vishalnayak authored Mar 18, 2018
1 parent a4a6758 commit 35b8d7e
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion physical/couchdb/couchdb.go
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,6 @@ func (m *couchDBClient) list(prefix string) ([]couchDBListItem, error) {
req.SetBasicAuth(m.username, m.password)
values := req.URL.Query()
values.Set("skip", "0")
values.Set("limit", "100")
values.Set("include_docs", "false")
if prefix != "" {
values.Set("startkey", fmt.Sprintf("%q", prefix))
Expand Down

0 comments on commit 35b8d7e

Please sign in to comment.