summaryrefslogtreecommitdiff
path: root/contrib/spoolqueue/producer.py
blob: ac6008a7edfb6c178b30190aac2d7248a426d912 (plain)
1
2
3
4
5
6
7
8
9
10
11
from tasksconsumer import enqueue

def application(env, sr):

    sr('200 OK', [('Content-Type','text/html')])

    enqueue(queue='fast', pippo='pluto')

    return "Task enqueued"