[ https://issues.apache.org/jira/browse/KAFKA-2605?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=15005914#comment-15005914 ]
ASF GitHub Bot commented on KAFKA-2605: --------------------------------------- Github user ZoneMayor closed the pull request at: https://github.com/apache/kafka/pull/532 > Replace `catch: Throwable` clauses with `NonFatal` or `NonControl` > ------------------------------------------------------------------ > > Key: KAFKA-2605 > URL: https://issues.apache.org/jira/browse/KAFKA-2605 > Project: Kafka > Issue Type: Improvement > Affects Versions: 0.8.2.2 > Reporter: Ismael Juma > Assignee: jin xing > Labels: newbie > > The Kafka codebase includes a number of instances where we do `catch t: > Throwable` where we should really be doing `catch NonFatal(t)` or `catch > NonControl(t)` where `NonFatal` is part of the standard library and > `NonControl` is something like: > {code} > object NonControl { > def apply(t: Throwable): Boolean = t match { > case _: ControlThrowable => false > case _ => true > } > def unapply(t: Throwable): Option[Throwable] = if (apply(t)) Some(t) else > None > } > {code} > We can also use `NonControl` to replace cases like (it's more concise and has > the same behaviour): > {code} > case e: ControlThrowable => throw e > case e: Throwable => ... > {code} -- This message was sent by Atlassian JIRA (v6.3.4#6332)