Skip to content

Commit

Permalink
remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
mensfeld committed Sep 22, 2023
1 parent e97209d commit 9f6ba5c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 5 deletions.
3 changes: 0 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,6 @@ jobs:
ruby-version: ${{matrix.ruby}}
bundler-cache: true

- name: Remove libzstd-dev to check no supported compressions
run: sudo apt-get -y remove libzstd-dev

- name: Run Kafka with docker-compose
run: |
docker-compose up -d
Expand Down
4 changes: 2 additions & 2 deletions spec/lib/waterdrop/producer/sync_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -112,10 +112,10 @@
it { expect(delivery).to be_a(Rdkafka::Producer::DeliveryReport) }
end

context 'when it is not installed zstd' do
context 'when it is installed zstd' do
let(:codec) { 'zstd' }

it { expect { delivery }.to raise_error(Rdkafka::Config::ConfigError) }
it { expect(delivery).to be_a(Rdkafka::Producer::DeliveryReport) }
end

context 'when it is installed lz4' do
Expand Down

0 comments on commit 9f6ba5c

Please sign in to comment.