scala
[scala] sbt 컴파일 속도 올리기
'김용환'
2019. 10. 21. 15:17
sbt 에서 컴파일 속도가 나지 않는다고 계속 아래 커맨드를 사용하라고 로그가 나와서
[warn] Getting the hostname Alvins-MacBook-Pro.local was slow (5003.850955 ms). This is likely because the computer's hostname is not set. You can set the hostname with the command: scutil --set HostName $(scutil --get LocalHostName).
아래 커맨드를 사용하니 잘 동작한다.
$ scutil —set HostName $(scutil —get LocalHostName)
참고할 내용
실제 코드
https://github.com/sbt/sbt/pull/3766/files
질문 & 답
https://apple.stackexchange.com/questions/175320/why-is-my-hostname-resolution-taking-so-long
\