Skip to content

Commit

Permalink
Comment
Browse files Browse the repository at this point in the history
  • Loading branch information
TonyCTHsu committed Nov 11, 2022
1 parent 0572b49 commit 86ec11b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ test_containers:
- &container_redis
image: redis:6.2
- &redis_port 6379
- &container_redis_old
- &container_redis_old # `qless` is still using this older version of redis
image: redis:3.0
name: redis_old
- &redis_old_port 6379
Expand Down
1 change: 1 addition & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -667,6 +667,7 @@ services:
- "6379"
ports:
- "${TEST_REDIS_PORT}:6379"
# `qless` is still using this older version of redis
redis_old:
image: redis:3.0
expose:
Expand Down
2 changes: 1 addition & 1 deletion spec/datadog/tracing/contrib/qless/support/job.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def string
include Qless::WorkerHelpers

let(:host) { ENV.fetch('TEST_REDIS_OLD_HOST', '127.0.0.1') }
let(:port) { ENV.fetch('TEST_REDIS_OLD_PORT', 6379) }
let(:port) { ENV.fetch('TEST_REDIS_OLD_PORT', '6379') }

let(:client) { Qless::Client.new(host: host, port: port) }
let(:queue) { client.queues['main'] }
Expand Down

0 comments on commit 86ec11b

Please sign in to comment.