WP CLI get action command: correct parentheses/nesting of conditional checks. #1272
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.
When looking at #1271, I noticed a problem with the
wp action-scheduler action get <id>
command. This command was mostly functional, but also generated a warning relating to its handling of the--fields
flag:The problem was a small oversight in the line used to check if this flag was set.
Steps to replicate
wp action-scheduler action list
and grab the first ID.wp eval "as_enqueue_async_action( 'test' );"
(or else you can usewp action-scheduler action create test now
once Importget_flag_value()
fromWP_CLI\Utils
before using. #1271 has been merged).wp action-scheduler action get <ID>
and you should see the same error noted in the PR description.--fields
flag still works as expected by runningwp action-scheduler action get <ID> --fields=hook,status
.Changelog