Skip to content

Commit 7e037c5

Browse files
authored
remove deprecation notice due to the great un-deprecation (#332)
### Description There is a lot of confusion about the meaning of deprecation in Valkey and there is an effort to formally un-deprecate a number of commands (See #[2459](valkey-io/valkey#2459)). As such, this PR removes the "Deprecated" notice for the commands under reconsideration. ### Issues Resolved n/a ### Check List - [x] Commits are signed per the DCO using `--signoff` By submitting this pull request, I confirm that my contribution is made under the terms of the BSD-3-Clause License. Signed-off-by: Kyle J. Davis <kyledvs@amazon.com>
1 parent 8fe3f57 commit 7e037c5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

templates/command-page.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
{% set command_title = command_obj_name %}
2626
{% endif %}
2727
{% set command_title = command_title | upper %}
28-
{% if command_data_obj.deprecated_since %}
28+
{% if command_data_obj.deprecated_since and (command_title == "SLAVEOF" or command_title == "CLUSTER SLAVES") %}
2929
{% set deprecated = "Deprecated" %}
3030
{% endif %}
3131
{% else %}

0 commit comments

Comments
 (0)