mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-08 20:28:42 +02:00
6 lines
177 B
Python
6 lines
177 B
Python
import time
|
|
|
|
def main(request, response):
|
|
delay = float(request.GET.first("ms", 500))
|
|
time.sleep(delay / 1E3);
|
|
return [("Content-type", "text/plain")], "TEST_DELAY"
|