You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I noticed that my tests were very slow to start running. While running
with sbt | ts '%H:%M:%.S', I found that there was almost always exactly
a 5 second delay between starting the process and the first output being
printed. I grepped for 5000 and found this line. Changing this parameter
eliminated the delay for me. The parameter seems to only be used in the
awaitConnection method, which just loops until serverSocket.accept
succeeds (with failure being a socket timeout). This makes me fairly
confident that this change won't break anything. I also would expect any
additional overhead of the extra thread wake ups to be negligible.
0 commit comments