Skip to content

Commit

Permalink
Since commands info and ft.info do not return redundant information -…
Browse files Browse the repository at this point in the history
… ft.info will not be deprecated in current release. (#3500)
  • Loading branch information
petyaslavova authored Feb 10, 2025
1 parent 9eab6fe commit 86a0d7a
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions redis/commands/search/commands.py
Original file line number Diff line number Diff line change
Expand Up @@ -442,10 +442,6 @@ def get(self, *ids):

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

@deprecated_function(
version="8.0.0",
reason="deprecated since Redis 8.0, call info from core module instead",
)
def info(self):
"""
Get info an stats about the the current index, including the number of
Expand Down Expand Up @@ -916,10 +912,6 @@ def syndump(self):


class AsyncSearchCommands(SearchCommands):
@deprecated_function(
version="8.0.0",
reason="deprecated since Redis 8.0, call info from core module instead",
)
async def info(self):
"""
Get info an stats about the the current index, including the number of
Expand Down

0 comments on commit 86a0d7a

Please sign in to comment.