summaryrefslogtreecommitdiff
path: root/tests/testsignals.py
blob: 4beb6cc321222eebc306fc8ece468835eca3d3b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import uwsgi

# send a raw signal to register with file_monitor subsystem
# uwsgi.signal(10, "/tmp/topolino")
uwsgi.signal(10, "/tmp")
# uwsgi.signal(10, "/root")

# send a raw signal to register with timer subsystem
uwsgi.signal(11, "3")
uwsgi.signal(11, "4")
uwsgi.signal(11, "8")


def application(e, s):
        s('200 Ok', [('Content-Type', 'text/html')])
        return "<h1>Hello World</h1>"