From a771ec3655f7ee7a0e0b620c1cadd0c1a1650aff Mon Sep 17 00:00:00 2001 From: Michael Hoffman Date: Fri, 11 Aug 2017 06:46:13 -0700 Subject: [PATCH] Implement rfc2324 section 2.3.2, Status 418: I'm a teapot. (#1392) Reference: https://www.ietf.org/rfc/rfc2324.txt --- lib/puma/const.rb | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/puma/const.rb b/lib/puma/const.rb index bb85eefdd0..3aa9374ba0 100644 --- a/lib/puma/const.rb +++ b/lib/puma/const.rb @@ -53,6 +53,7 @@ class UnsupportedOption < RuntimeError 415 => 'Unsupported Media Type', 416 => 'Range Not Satisfiable', 417 => 'Expectation Failed', + 418 => 'I\'m A Teapot', 422 => 'Unprocessable Entity', 423 => 'Locked', 424 => 'Failed Dependency',