Skip to content

Commit

Permalink
Update sarama library
Browse files Browse the repository at this point in the history
Update to 1.19 and pick up the following bug fixes:

1. IBM/sarama#1021 (for FAB-11977)
2. IBM/sarama#1087 (for FAB-12827)

FAB-11977 #done
FAB-12827 #done

Change-Id: I85f89aeabb619a084902dc9e76491b981848c752
Signed-off-by: Kostas Christidis <[email protected]>
  • Loading branch information
kchristidis committed Nov 12, 2018
1 parent 21a70ce commit 3af1a52
Show file tree
Hide file tree
Showing 83 changed files with 6,122 additions and 662 deletions.
5 changes: 2 additions & 3 deletions orderer/consensus/kafka/chain_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -576,7 +576,7 @@ func TestCloseKafkaObjects(t *testing.T) {

assert.Len(t, errs, 0, "Expected zero errors")

assert.Panics(t, func() {
assert.NotPanics(t, func() {
channelConsumer.Close()
})

Expand Down Expand Up @@ -2121,11 +2121,10 @@ func TestProcessMessagesToBlocks(t *testing.T) {
doneProcessingMessagesToBlocks: make(chan struct{}),
}

var counts []uint64
done := make(chan struct{})

go func() {
counts, err = bareMinimumChain.processMessagesToBlocks()
_, err = bareMinimumChain.processMessagesToBlocks()
done <- struct{}{}
}()

Expand Down
132 changes: 132 additions & 0 deletions vendor/github.com/Shopify/sarama/CHANGELOG.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/github.com/Shopify/sarama/LICENSE

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 3 additions & 2 deletions vendor/github.com/Shopify/sarama/Makefile

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion vendor/github.com/Shopify/sarama/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

119 changes: 119 additions & 0 deletions vendor/github.com/Shopify/sarama/acl_bindings.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

76 changes: 76 additions & 0 deletions vendor/github.com/Shopify/sarama/acl_create_request.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3af1a52

Please sign in to comment.