Skip to content

Commit

Permalink
Cluster info print out in gha
Browse files Browse the repository at this point in the history
  • Loading branch information
robfreedy committed Nov 16, 2023
1 parent 3792955 commit dd8b63a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def _fix_loop(event_loop):
@pytest.fixture
async def arq_redis(loop):
redis_ = ArqRedis(
host='localhost',
host='127.0.0.1',
port=6379,
encoding='utf-8',
)
Expand All @@ -41,8 +41,8 @@ async def unix_socket_path(loop, tmp_path):
@pytest.fixture
async def arq_redis_msgpack(loop):
redis_ = ArqRedis(
host='localhost',
port=5000,
host='127.0.0.1',
port=6379,
encoding='utf-8',
job_serializer=msgpack.packb,
job_deserializer=functools.partial(msgpack.unpackb, raw=False),
Expand All @@ -55,7 +55,7 @@ async def arq_redis_msgpack(loop):
@pytest.fixture
async def arq_redis_cluster(loop):
settings = RedisSettings(
host=' localhost',
host=' 127.0.0.1',
port='5000',
conn_timeout=60,
cluster_mode=True
Expand Down

0 comments on commit dd8b63a

Please sign in to comment.