Skip to content
Merged
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ check:

NUM_PROCS ?= 2
TEST_TIMEOUT ?= 3m
test: vet fmt
test: vet fmt check
go run -mod=mod github.com/onsi/ginkgo/v2/ginkgo -r --procs=$(NUM_PROCS) --compilers=$(NUM_PROCS) \
--randomize-all --randomize-suites \
--cover --coverprofile=coverage.txt --covermode=atomic \
Expand Down
2 changes: 1 addition & 1 deletion pkg/stream/coordinator.go
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ func (coordinator *Coordinator) NewConsumer(messagesHandler MessagesHandler,
lastStoredOffset: -1, // because 0 is a valid value for the offset
isPromotedAsActive: true,
lastAutoCommitStored: time.Now(),
chunkForConsumer: make(chan chunkInfo, 100),
chunkForConsumer: make(chan chunkInfo, parameters.initialCredits),
onClose: cleanUp,
}

Expand Down
Loading