Github user vanzin commented on a diff in the pull request: https://github.com/apache/spark/pull/19893#discussion_r155599671 --- Diff: core/src/test/scala/org/apache/spark/SparkFunSuite.scala --- @@ -34,12 +36,53 @@ abstract class SparkFunSuite with Logging { // scalastyle:on + val threadWhiteList = Set( + /** + * Netty related threads. + */ + "netty.*", + + /** + * A Single-thread singleton EventExecutor inside netty which creates such threads. + */ + "globalEventExecutor.*", + + /** + * Netty creates such threads. --- End diff -- Note I want these explanations in the code comments, not here in the PR.
--- --------------------------------------------------------------------- To unsubscribe, e-mail: reviews-unsubscr...@spark.apache.org For additional commands, e-mail: reviews-h...@spark.apache.org