Skip to content

Commit

Permalink
Temporary change to test why GitHub Actions is getting 404's when it …
Browse files Browse the repository at this point in the history
…is expecting 200's, by changing one of the two locations that returns 404 into a 204. Will revert soon.
  • Loading branch information
JonathanGiles committed Jan 23, 2024
1 parent ff221f5 commit ef1c8da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -272,7 +272,7 @@ private void handleIncomingRequest(final Socket clientSocket) {
}
response = route.get().getValue().apply(request);
} else {
response = StatusCode.NOT_FOUND.asResponse();
response = StatusCode.NO_CONTENT.asResponse();
}

sendResponse(clientSocket, response);
Expand Down

0 comments on commit ef1c8da

Please sign in to comment.