msa practice를 하며 postBuffer size를 1MB로 설정했었다.
그러다가 기존 프로젝트를 MSA 화 시키려고 최신 코드를 내려받던중 다음과 같은 에러가 발생했다.
9:34 AM Update failed
BUG: remote-curl.c:1452: The entire rpc->buf should be larger than LARGE_PACKET_MAX
git-remote-https died of signal 6
expected flush after ref listing
원인이 여러개 일 수 있지만 찾아보니 postBuffer가 작아서 발생할 수 있다고 한다.
그래서 사이즈를 재설정 해줬다.
git config http.postBuffer 2M
그랬더니 문제가 해결됐다.
감사합니다!!