Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: edk/resque-round-robin
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: ggtracker/resque-round-robin
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
  • 18 commits
  • 5 files changed
  • 3 contributors

Commits on Nov 5, 2012

  1. Replace call to present? with non-rails equivalent.

    Also bump the version to 0.1.3.
    Jack Veenstra committed Nov 5, 2012
    Configuration menu
    Copy the full SHA
    647b90e View commit details
    Browse the repository at this point in the history
  2. Fair round-robin scheduling of jobs.

    This fixes a bug with picking jobs fairly when there are some empty queues. For
    example, suppose queues A, and B are empty, while C and D each have 4 jobs.
    Before this change, the scheduler would start searching at queue A and
    eventually pick a job from C. Then it would start searching from B and pick
    another job from C. Then it would start searching at C and pick a job from C.
    Finally it would start searching from D and pick a job from D. So the jobs
    would be executed in the order: C, C, C, D, C, D, D, D. But we would like
    fair scheduling where the jobs alternate between C and D. To fix this bug,
    the code starts the next search from the next queue that follows the one from
    which we took the last job.
    
    Also bump the version number to 0.1.4.
    Jack Veenstra committed Nov 5, 2012
    Configuration menu
    Copy the full SHA
    7690038 View commit details
    Browse the repository at this point in the history

Commits on Nov 18, 2012

  1. relax dependency on resque

    edk committed Nov 18, 2012
    Configuration menu
    Copy the full SHA
    df2a37a View commit details
    Browse the repository at this point in the history
  2. Configuration menu
    Copy the full SHA
    82e590e View commit details
    Browse the repository at this point in the history
  3. Merge branch 'fair-round-robin' of https://github.com/veenstra/resque…

    …-round-robin
    
    Conflicts:
    	lib/resque/plugins/round_robin/version.rb
    edk committed Nov 18, 2012
    Configuration menu
    Copy the full SHA
    576fbd1 View commit details
    Browse the repository at this point in the history

Commits on Nov 19, 2012

  1. update readme

    edk committed Nov 19, 2012
    Configuration menu
    Copy the full SHA
    d47fcd4 View commit details
    Browse the repository at this point in the history

Commits on Dec 10, 2012

  1. reserve configurably returns nil if a named queue has more than a con…

    …figurable number of jobs in it
    dsjoerg committed Dec 10, 2012
    Configuration menu
    Copy the full SHA
    b62a2e9 View commit details
    Browse the repository at this point in the history
  2. whoops

    dsjoerg committed Dec 10, 2012
    Configuration menu
    Copy the full SHA
    6fe6c9f View commit details
    Browse the repository at this point in the history
  3. new hack

    dsjoerg committed Dec 10, 2012
    Configuration menu
    Copy the full SHA
    09b1fdd View commit details
    Browse the repository at this point in the history
  4. more sad hax

    dsjoerg committed Dec 10, 2012
    Configuration menu
    Copy the full SHA
    23799d2 View commit details
    Browse the repository at this point in the history
  5. yay more hax

    dsjoerg committed Dec 10, 2012
    Configuration menu
    Copy the full SHA
    766d636 View commit details
    Browse the repository at this point in the history

Commits on Dec 14, 2012

  1. Configuration menu
    Copy the full SHA
    62b48dc View commit details
    Browse the repository at this point in the history

Commits on Apr 25, 2013

  1. Configuration menu
    Copy the full SHA
    7782bf4 View commit details
    Browse the repository at this point in the history
  2. simplify

    dsjoerg committed Apr 25, 2013
    Configuration menu
    Copy the full SHA
    f4437c9 View commit details
    Browse the repository at this point in the history

Commits on Apr 26, 2013

  1. argh not so much printing plz

    dsjoerg committed Apr 26, 2013
    Configuration menu
    Copy the full SHA
    bb01105 View commit details
    Browse the repository at this point in the history

Commits on Apr 29, 2013

  1. Configuration menu
    Copy the full SHA
    72a4637 View commit details
    Browse the repository at this point in the history

Commits on May 2, 2013

  1. Configuration menu
    Copy the full SHA
    d073ea5 View commit details
    Browse the repository at this point in the history

Commits on May 3, 2013

  1. Configuration menu
    Copy the full SHA
    3d5f602 View commit details
    Browse the repository at this point in the history
Loading