Skip to content

Commit

Permalink
Merge pull request #124 from deliciousbrains/spike/bg-process-uuid
Browse files Browse the repository at this point in the history
Add Chain ID for better control of background process lifecycle
  • Loading branch information
ianmjones authored Dec 17, 2024
2 parents 212b8ea + b9d5c6e commit 7ca7cc3
Show file tree
Hide file tree
Showing 3 changed files with 240 additions and 28 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@ vendor: composer.json
.PHONY: clean
clean:
rm -rf vendor
rm -f tests/.phpunit.result.cache
rm -f tests/.phpunit.result.cache .phpunit.result.cache
6 changes: 3 additions & 3 deletions classes/wp-async-request.php
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ protected function get_query_args() {
);

/**
* Filters the post arguments used during an async request.
* Filters the query arguments used during an async request.
*
* @param array $url
* @param array $args
*/
return apply_filters( $this->identifier . '_query_args', $args );
}
Expand All @@ -121,7 +121,7 @@ protected function get_query_url() {
$url = admin_url( 'admin-ajax.php' );

/**
* Filters the post arguments used during an async request.
* Filters the query URL used during an async request.
*
* @param string $url
*/
Expand Down
Loading

0 comments on commit 7ca7cc3

Please sign in to comment.