connection reset by peer

K6를 이용한 서버 성능 테스트 이슈
서버 성능 테스트를 위해 k6 셋팅을 하고 테스트로 요청을 하는 도중에 아래와 같은 에러가 발생했다.WARN[0000] Request Failed error="Get \"http://localhost:8080/test/ping\": read tcp 127.0.0.1:62761->127.0.0.1:8080: read: connection reset by peer" K6 scriptexport const options = { scenarios: { spike: { executor: 'constant-vus', vus: 200, duration: '1s', }, }};export default function () ..