Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ library_gemfile: &library_gemfile
- "./gemfiles/mongo_216.gemfile"
- "./gemfiles/mongo_219.gemfile"
executors:
ruby_33_lint:
ruby_34_lint:
docker:
- image: public.ecr.aws/docker/library/ruby:3.4
base:
Expand All @@ -58,7 +58,7 @@ executors:
- image: quay.io/minio/minio
command: ["server", "/data"]
- image: s12v/sns
- image: public.ecr.aws/docker/library/rabbitmq:4.2
- image: public.ecr.aws/docker/library/rabbitmq:latest
- image: public.ecr.aws/sprig/elasticmq-native
- image: public.ecr.aws/docker/library/mongo:5-focal
mysql2:
Expand Down Expand Up @@ -233,7 +233,7 @@ jobs:
- setup
- run_tests
lint:
executor: ruby_33_lint
executor: ruby_34_lint
environment:
BUNDLE_GEMFILE: "./gemfiles/rubocop_162.gemfile"
steps:
Expand Down
16 changes: 16 additions & 0 deletions gemfiles/bunny_300.gemfile
Comment thread
arjun-rajappa marked this conversation as resolved.
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# This file was generated by Appraisal

# (c) Copyright IBM Corp. 2026

source "https://rubygems.org"

gem "minitest-reporters"
gem "webmock"
gem "puma"
gem "rack"
gem "rackup"
gem "rack-test"
gem "simplecov", "~> 0.21.2"
gem "bunny", '>= 3.0'

gemspec path: "../"
6 changes: 3 additions & 3 deletions test/instrumentation/bunny_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ def setup
end
@channel = @connection.create_channel
@exchange = @channel.default_exchange
@queue = @channel.queue('instana.test.queue', auto_delete: true)
@queue = @channel.queue('instana.test.queue', auto_delete: true, exclusive: true)
@queue.purge
end

Expand Down Expand Up @@ -676,8 +676,8 @@ def test_multiple_exchanges_and_queues
# Create multiple exchanges and queues
exchange1 = @channel.topic('instana.test.exchange1', auto_delete: true)
exchange2 = @channel.topic('instana.test.exchange2', auto_delete: true)
queue1 = @channel.queue('instana.test.queue1', auto_delete: true)
queue2 = @channel.queue('instana.test.queue2', auto_delete: true)
queue1 = @channel.queue('instana.test.queue1', auto_delete: true, exclusive: true)
queue2 = @channel.queue('instana.test.queue2', auto_delete: true, exclusive: true)

queue1.bind(exchange1, routing_key: 'key1')
queue2.bind(exchange2, routing_key: 'key2')
Expand Down
Loading