Skip to content

Commit

Permalink
fix: 解决代码合并问题
Browse files Browse the repository at this point in the history
  • Loading branch information
lemondark committed Aug 22, 2023
1 parent 3579ad3 commit d99219c
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ public static String getRequest(String urlStr) {
String host = url.getHost();
String file = url.getFile();
return GET_METHOD + ' ' + file + ' ' + HTTP_VERSION + CRLF +
"Connection: close" + CRLF +
"Connection: keep-alive" + CRLF +
HOST_HEADER + ": " + host + CRLF +
CRLF;
} catch (MalformedURLException e) {
Expand Down

0 comments on commit d99219c

Please sign in to comment.