diff options
| author | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-06 21:15:26 +0100 |
|---|---|---|
| committer | schneefux <schneefux+commit@schneefux.xyz> | 2017-03-06 21:15:26 +0100 |
| commit | e6f3ff106d4ef3570b61748993f712af3a5227b2 (patch) | |
| tree | 74feb0a4e0bd540d09e73499552933ce80716733 | |
| parent | 5680e5afc952a58d4fb1ed8fcbf7d8c1700b9f37 (diff) | |
| download | joblib-e6f3ff106d4ef3570b61748993f712af3a5227b2.tar.gz joblib-e6f3ff106d4ef3570b61748993f712af3a5227b2.zip | |
fix: nevermind. DESC -> ASC
| -rw-r--r-- | joblib.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -76,7 +76,7 @@ class JobQueue(object): FROM ( SELECT id FROM jobs WHERE status='open' AND type=$1 - ORDER BY priority DESC + ORDER BY priority ASC LIMIT $2 ) AS open_jobs WHERE jobs.id=open_jobs.id |
