Barry Hughes
Barry Hughes
Thanks for flagging this. I think it makes sense to use the site timezone here, though being mindful of backwards compatibility it might be that to resolve this we either...
Currently, you would need to manage this yourself (not ideal, but there is no baked-in support for this at time of writing). A possible pattern you could adopt as an...
Noodling on this a little, I'm curious why we don't extend support for retries to recurring actions. On one hand I understand they _may_ not be useful in some cases...
I definitely see the utility of that—thanks for the suggestion. * I'm tending to think a new flag like `--ignore-group` might be best (vs using a new `-group_name` syntax with...
Great, thanks @georgejipa.
📝 Worth noting this information is effectively available via the WooCommerce Status screen (but we probably shouldn't depend on that, since Action Scheduler can be used independently of WooCommerce).
@crstauf I may be failing to see the wood for the trees but can't identify the PR you mean ... do you recall the reason?
Thanks! That was a neat idea. This proposal is slightly different in that it doesn't involve collecting details of _all_ instances of the library (and so wouldn't be impacted by...
Hi @crstauf, This isn't directly supported by `as_get_scheduled_actions()` but you could possibly use a strategy looking something like this: ```php // Query for pending actions. $pending_actions = as_get_scheduled_actions( [ 'status'...
Gotcha. Is testing the fetched actions, to see if the schedule type is `ActionScheduler_NullSchedule` (as in my example) a viable solution for you? My initial thinking is that approach, and/or...