diff --git a/httpbin/core.py b/httpbin/core.py index 0a00a828..e6d53ded 100644 --- a/httpbin/core.py +++ b/httpbin/core.py @@ -1072,7 +1072,7 @@ def digest_auth(qop=None, user='user', passwd='passwd', algorithm='MD5', stale_a return response -@app.route('/delay/') +@app.route('/delay/', methods=['GET', 'POST', 'PUT', 'DELETE', 'PATCH', 'TRACE']) def delay_response(delay): """"Returns a delayed response (max of 10 seconds). ---