Skip to content

Commit

Permalink
refactor: 쓰레드 작업 처리 메서드 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
yeonkkk committed Sep 12, 2023
1 parent 42235a3 commit ecbff03
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ private void process(final Socket connection) {
return;
}
var processor = new Http11Processor(connection);
executorService.execute(processor);
executorService.submit(processor);
}

public void stop() {
Expand Down

0 comments on commit ecbff03

Please sign in to comment.