Skip to content

Commit d7f7a2c

Browse files
Merge pull request #119 from k-r-g/errorHttpStatus500
Set HTTP status 500 when site is unavailable
2 parents e5d408f + 572b513 commit d7f7a2c

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

gemini/src/main/java/com/techempower/gemini/GeminiApplication.java

+1
Original file line numberDiff line numberDiff line change
@@ -1139,6 +1139,7 @@ protected void handleRequest(Context context)
11391139
private void handleError(Context context, String error) throws IOException
11401140
{
11411141
context.setContentType("text/html");
1142+
context.setStatus(500);
11421143
final Writer writer = context.getWriter();
11431144
writer.write("<html>");
11441145
writer.write("<head><title>Temporarily Unavailable</title>");

0 commit comments

Comments
 (0)