diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-02-25 22:12:27 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-02-25 22:12:27 +0100 |
| commit | fa1932a5ac4dd16c743ae55315aa7419297058b1 (patch) | |
| tree | ea2aab3b60f9a104bee94076283d9513327933fd | |
| parent | 997ed7580a47285c8f515f4ff68cc0786ec27e44 (diff) | |
| download | joblib-fa1932a5ac4dd16c743ae55315aa7419297058b1.tar.gz joblib-fa1932a5ac4dd16c743ae55315aa7419297058b1.zip | |
fixed priority being in wrong order
| -rw-r--r-- | joblib.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -47,7 +47,7 @@ class JobQueue(object): SELECT id, payload FROM jobs WHERE type=$1 AND status='open' - ORDER BY priority ASC + ORDER BY priority DESC """, jobtype) if result is None: # no jobs available |
