Skip to content

Commit 15516b9

Browse files
committed
#0000 HTTP(S): Omission of status 424
1 parent b7b4f14 commit 15516b9

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

test/sources/com/seanox/test/Pattern.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,9 @@ public class Pattern {
7676

7777
/** Pattern for an access log entry with status 408 */
7878
public static final String ACCESS_LOG_STATUS_408 = ACCESS_LOG_STATUS("408");
79-
80-
/** Pattern for an access log entry with status 424 */
81-
public static final String ACCESS_LOG_STATUS_424 = ACCESS_LOG_STATUS("424");
79+
80+
/** Pattern for an access log entry with status 500 */
81+
public static final String ACCESS_LOG_STATUS_500 = ACCESS_LOG_STATUS("500");
8282

8383
/** Pattern for an access log entry with status 501 */
8484
public static final String ACCESS_LOG_STATUS_501 = ACCESS_LOG_STATUS("501");
@@ -323,10 +323,10 @@ public static String HTTP_RESPONSE_LOCATION(final String url) {
323323

324324
/** Pattern for a http response header with status 416 */
325325
public static final String HTTP_RESPONSE_STATUS_416 = HTTP_RESPONSE_STATUS("416");
326-
327-
/** Pattern for a http response header with status 424 */
328-
public static final String HTTP_RESPONSE_STATUS_424 = HTTP_RESPONSE_STATUS("424");
329-
326+
327+
/** Pattern for a http response header with status 500 */
328+
public static final String HTTP_RESPONSE_STATUS_500 = HTTP_RESPONSE_STATUS("500");
329+
330330
/** Pattern for a http response header with status 501 */
331331
public static final String HTTP_RESPONSE_STATUS_501 = HTTP_RESPONSE_STATUS("501");
332332

0 commit comments

Comments
 (0)