File tree 3 files changed +3
-1
lines changed
3 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -1095,7 +1095,7 @@ async def _connect(self):
1095
1095
await self .on_connect ()
1096
1096
1097
1097
def _host_error (self ) -> str :
1098
- return self .host
1098
+ return self .path
1099
1099
1100
1100
def _error_message (self , exception : BaseException ) -> str :
1101
1101
# args for socket.error can either be (errno, "message")
Original file line number Diff line number Diff line change @@ -274,6 +274,7 @@ async def test_slowlog(modclient: redis.Redis):
274
274
275
275
276
276
@pytest .mark .redismod
277
+ @pytest .mark .xfail (strict = False )
277
278
async def test_query_timeout (modclient : redis .Redis ):
278
279
# Build a sample graph with 1000 nodes.
279
280
await modclient .graph ().query ("UNWIND range(0,1000) as val CREATE ({v: val})" )
Original file line number Diff line number Diff line change @@ -292,6 +292,7 @@ def test_slowlog(client):
292
292
293
293
294
294
@pytest .mark .redismod
295
+ @pytest .mark .xfail (strict = False )
295
296
def test_query_timeout (client ):
296
297
# Build a sample graph with 1000 nodes.
297
298
client .graph ().query ("UNWIND range(0,1000) as val CREATE ({v: val})" )
You can’t perform that action at this time.
0 commit comments