- 05 Jul, 2017 2 commits
-
-
Erick Hitter authored
Ensure WP-CLI's `--quiet` flag is respected
-
Erick Hitter authored
From `line()`'s inline doc: > Display informational message without prefix, and ignore `--quiet`.
-
- 16 Jun, 2017 2 commits
-
-
Erick Hitter authored
Removing unused global $wpdb variable
-
David Binovec authored
The `$wpdb` variable is not being used in \Automattic\WP\Cron_Control\CLI\Events::get_events() methods and thus is not necessary to be made accessible in there.
-
- 26 May, 2017 2 commits
-
-
Erick Hitter authored
Remove the plugin's table when a subsite is deleted from a multisite
-
Erick Hitter authored
Add example for concurrency
-
- 25 May, 2017 1 commit
-
-
Simon Wheatley authored
-
- 19 May, 2017 1 commit
-
-
Erick Hitter authored
Fixes #107
-
- 16 May, 2017 2 commits
-
-
Erick Hitter authored
Allow whitelisted events to run concurrently
-
Erick Hitter authored
-
- 15 May, 2017 2 commits
-
-
Erick Hitter authored
-
Erick Hitter authored
-
- 10 May, 2017 2 commits
-
-
Erick Hitter authored
-
Erick Hitter authored
Most events, due to alloptions inconsistencies, cannot run in parallel. Certain events, however, may be acceptable. Fixes #106.
-
- 14 Apr, 2017 4 commits
-
-
Erick Hitter authored
For monitoring and alerting, include total of pending events in list endpoint response
-
Erick Hitter authored
A dedicated endpoint is overkill, as the list endpoint is central to the plugin operating as expected. Fixes #100
-
Erick Hitter authored
Ensure `DOING_CRON` is set for all REST requests
-
Erick Hitter authored
-
- 13 Apr, 2017 3 commits
-
-
Erick Hitter authored
-
Erick Hitter authored
-
Erick Hitter authored
If code is loaded conditionally when `DOING_CRON` is set, not setting it for all of the plugin's REST endpoints can lead to unexpected behaviour. For example, duplicate events can be created infinitely, in combination with the skip-empty-event functionality. Fixes #97
-
- 31 Mar, 2017 2 commits
-
-
Erick Hitter authored
Clear Event Store caches when table is created
-
Erick Hitter authored
-
- 29 Mar, 2017 1 commit
-
-
Erick Hitter authored
Convert to custom table
-
- 25 Mar, 2017 8 commits
-
-
Erick Hitter authored
-
Erick Hitter authored
-
Erick Hitter authored
-
Erick Hitter authored
-
Erick Hitter authored
-
Erick Hitter authored
-
Erick Hitter authored
-
Erick Hitter authored
PHPUnit doesn't load the plugin until after it's called `wp_install()`, which blocks normal table creation and disables the plugin.
-
- 24 Mar, 2017 5 commits
-
-
Erick Hitter authored
-
Erick Hitter authored
-
Erick Hitter authored
-
Erick Hitter authored
If table creation fails during install, or plugin is added to an installed site, create table in limited circumstances
-
Erick Hitter authored
Race conditions are a concern, so it'd be better not to create the table without some control over when it happens.
-
- 18 Mar, 2017 3 commits
-
-
Erick Hitter authored
When events are capped in this way, if they don't appear in the reconstructed array, they can be continually rescheduled. With the introduction of the block on existing-event creation introduced in 61597bc5, this approach should longer be necessary. The creation of duplicates is also greatly reduced by the table's unique key. Fixes #94
-
Erick Hitter authored
-
Erick Hitter authored
-