eventstore: QueryEvents() to take a maxLimit param now so everything is clearer.
This commit is contained in:
@@ -25,7 +25,7 @@ var query = &cli.Command{
|
||||
continue
|
||||
}
|
||||
|
||||
for evt := range db.QueryEvents(filter) {
|
||||
for evt := range db.QueryEvents(filter, 1_000_000) {
|
||||
fmt.Println(evt)
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user