Doc 4423 tces for cmd pages - fix problematic doctest#1
Merged
dwdougherty merged 4 commits intodwdougherty:DOC-4423-tces-for-cmd-pagesfrom Apr 22, 2025
Conversation
Update comment-line (58) from `foo` to `null`
from redis docs for ACL DELUSER:
Delete all the specified ACL users and terminate all the connections
that are authenticated with such users
Nodejs complains: Warning: Detected unsettled top-level await
which in turn gives the error code 13 in the workflow
await client.auth({ username: 'test-user' ...});
// deleting the user that is currently logged in -> bad
await client.sendCommand(['ACL', 'DELUSER', 'test-user']);
await client.quit()
fix: authenticate with the default user before deleting the test-user
2ba230c
into
dwdougherty:DOC-4423-tces-for-cmd-pages
1 check passed
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
from redis docs for ACL DELUSER:
Delete all the specified ACL users and terminate all the connections
that are authenticated with such users
Nodejs complains: Warning: Detected unsettled top-level await
which in turn gives the error code 13 in the workflow
await client.auth({ username: 'test-user' ...});
// deleting the user that is currently logged in -> bad
await client.sendCommand(['ACL', 'DELUSER', 'test-user']);
await client.quit()
fix: authenticate with the default user before deleting the test-user