summaryrefslogtreecommitdiff
path: root/tests/slow.py
blob: 61ca5d5b059d76935de1687b34c49cc17891f96c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
import time
import uwsgi


def application(e, s):
    print "locking"
    uwsgi.lock()
    print "locked"
    time.sleep(3)
    uwsgi.unlock()
    print "UN-locked"
    s('200 OK', [('Content-Type', 'text/html')])
    return "slow"