File tree Expand file tree Collapse file tree 3 files changed +3
-1
lines changed Expand file tree Collapse file tree 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):
10951095 await self .on_connect ()
10961096
10971097 def _host_error (self ) -> str :
1098- return self .host
1098+ return self .path
10991099
11001100 def _error_message (self , exception : BaseException ) -> str :
11011101 # 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):
274274
275275
276276@pytest .mark .redismod
277+ @pytest .mark .xfail (strict = False )
277278async def test_query_timeout (modclient : redis .Redis ):
278279 # Build a sample graph with 1000 nodes.
279280 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):
292292
293293
294294@pytest .mark .redismod
295+ @pytest .mark .xfail (strict = False )
295296def test_query_timeout (client ):
296297 # Build a sample graph with 1000 nodes.
297298 client .graph ().query ("UNWIND range(0,1000) as val CREATE ({v: val})" )
You can’t perform that action at this time.
0 commit comments