Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Initialise earlier on init to fix issues with ALTERNATE_WP_CRON #24

Merged
merged 10 commits into from
Apr 23, 2015
Merged

Initialise earlier on init to fix issues with ALTERNATE_WP_CRON #24

merged 10 commits into from
Apr 23, 2015

Commits on Jul 9, 2014

  1. Initialise earlier on init

    When `ALTERNATE_WP_CRON` is defined, WordPress runs `wp_cron()` too early [bug report here](https://core.trac.wordpress.org/ticket/24160).
    
    As a result, the `'action_scheduler_run_queue'` hook is triggered before `ActionScheduler_QueueRunner::init()`
    has run, because it is hooked to `'init'` with the default priority in `ActionScheduler::init()`.
    thenbrent committed Jul 9, 2014
    Configuration menu
    Copy the full SHA
    b9eeb3e View commit details
    Browse the repository at this point in the history

Commits on Aug 20, 2014

  1. Bugfix: flush cache if not using external cache or if filter is modified

    Currently it will ONLY flush caches if using an external cache and if the filter is not modified, the inverse of what we want.
    Johan Eenfeldt committed Aug 20, 2014
    Configuration menu
    Copy the full SHA
    148c644 View commit details
    Browse the repository at this point in the history

Commits on Nov 7, 2014

  1. Fetch the actions within the try/catch block

    To ensure that any catchable exceptions that occur while fetching the
    action do not block the entire queue (like invalid JSON in `post_content`).
    
    Fixes #26.
    thenbrent committed Nov 7, 2014
    Configuration menu
    Copy the full SHA
    93ba06d View commit details
    Browse the repository at this point in the history

Commits on Nov 10, 2014

  1. Trigger before execute hook before fetching action

    To ensure any catchable fatal errors in fetching the action, like that
    reported in #26 are handled by ActionScheduler_FatalErrorMonitor (which
    only attaches itself on the `'action_scheduler_before_execute'` hook.
    
    Part of #26
    thenbrent committed Nov 10, 2014
    Configuration menu
    Copy the full SHA
    e120d82 View commit details
    Browse the repository at this point in the history

Commits on Jan 12, 2015

  1. Merge pull request #28 from thenbrent/hide_log_from_counts

    Do not include log entries in comment counts
    Brent Shepherd committed Jan 12, 2015
    Configuration menu
    Copy the full SHA
    d2627ca View commit details
    Browse the repository at this point in the history

Commits on Jan 21, 2015

  1. Merge pull request #25 from johanee/master

    Bugfix: flush cache if not using external cache or if filter is modified
    Brent Shepherd committed Jan 21, 2015
    Configuration menu
    Copy the full SHA
    cc144ac View commit details
    Browse the repository at this point in the history

Commits on Mar 24, 2015

  1. Update build status image

    To link to /prospress/ org repo
    Brent Shepherd committed Mar 24, 2015
    Configuration menu
    Copy the full SHA
    5c311fc View commit details
    Browse the repository at this point in the history
  2. Update build status image

    For real this time
    Brent Shepherd committed Mar 24, 2015
    Configuration menu
    Copy the full SHA
    58f1dd9 View commit details
    Browse the repository at this point in the history

Commits on Apr 23, 2015

  1. Merge pull request #27 from thenbrent/fix-args-exceptions

    Catch fatal errors when fetching action in queue
    Brent Shepherd committed Apr 23, 2015
    Configuration menu
    Copy the full SHA
    1d5b589 View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    96d25fb View commit details
    Browse the repository at this point in the history