Skip to content

Commit 86a0d7a

Browse files
authored
Since commands info and ft.info do not return redundant information - ft.info will not be deprecated in current release. (#3500)
1 parent 9eab6fe commit 86a0d7a

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

redis/commands/search/commands.py

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -442,10 +442,6 @@ def get(self, *ids):
442442

443443
return self.execute_command(MGET_CMD, self.index_name, *ids)
444444

445-
@deprecated_function(
446-
version="8.0.0",
447-
reason="deprecated since Redis 8.0, call info from core module instead",
448-
)
449445
def info(self):
450446
"""
451447
Get info an stats about the the current index, including the number of
@@ -916,10 +912,6 @@ def syndump(self):
916912

917913

918914
class AsyncSearchCommands(SearchCommands):
919-
@deprecated_function(
920-
version="8.0.0",
921-
reason="deprecated since Redis 8.0, call info from core module instead",
922-
)
923915
async def info(self):
924916
"""
925917
Get info an stats about the the current index, including the number of

0 commit comments

Comments
 (0)