Skip to content

Commit

Permalink
Fix runlocal (#271)
Browse files Browse the repository at this point in the history
  • Loading branch information
Tatskaari authored Nov 10, 2023
1 parent 71d337e commit ce6e22d
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions mettle/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,9 +164,11 @@ func main() {
const requests = "mem://requests"
const responses = "mem://responses"
queues := api.PubSubOpts{
RequestQueue: requests,
ResponseQueue: responses,
NumPollers: 1,
RequestQueue: requests,
ResponseQueue: responses,
PreResponseQueue: responses,
NumPollers: 1,
SubscriptionBatchSize: 100,
}

// Must ensure the topics are created ahead of time.
Expand Down

0 comments on commit ce6e22d

Please sign in to comment.