mirror of
https://github.com/clearlinux/uwsgi.git
synced 2026-09-04 04:31:44 +00:00
23 lines
279 B
Python
23 lines
279 B
Python
#! /usr/bin/env python2
|
|
# coding = utf-8
|
|
|
|
tasks = [
|
|
(101, "101"),
|
|
(101, "101Bis"),
|
|
(2, "2"),
|
|
(1, "1"),
|
|
(0, "0"),
|
|
(None, "NoPriority")
|
|
]
|
|
|
|
ordered_tasks = [
|
|
"0",
|
|
"1",
|
|
"2",
|
|
"101",
|
|
"101Bis",
|
|
"NoPriority"
|
|
]
|
|
|
|
LOGFILE = "/tmp/spoolerlog"
|