Skip to content

Commit

Permalink
Trying single node on 6380
Browse files Browse the repository at this point in the history
  • Loading branch information
robfreedy committed Nov 16, 2023
1 parent e49c7e8 commit 31b2361
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -69,12 +69,12 @@ jobs:

runs-on: ${{ format('{0}-latest', matrix.os) }}

# services:
# redis:
# image: redis:${{ matrix.redis }}
# ports:
# - 6379:6379
# options: --entrypoint redis-server
services:
redis:
image: redis:${{ matrix.redis }}
ports:
- 6380:6379
options: --entrypoint redis-server

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def _fix_loop(event_loop):
async def arq_redis(loop):
redis_ = ArqRedis(
host='localhost',
port=6379,
port=6380,
encoding='utf-8',
)

Expand Down

0 comments on commit 31b2361

Please sign in to comment.