You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Ahmed Mahran (JIRA)" <ji...@apache.org> on 2016/06/21 22:03:58 UTC

[jira] [Created] (SPARK-16120) getCurrentLogFiles method in ReceiverSuite "WAL - generating and cleaning" case uses external variable instead of the passed parameter

Ahmed Mahran created SPARK-16120:
------------------------------------

             Summary: getCurrentLogFiles method in ReceiverSuite "WAL - generating and cleaning" case uses external variable instead of the passed parameter
                 Key: SPARK-16120
                 URL: https://issues.apache.org/jira/browse/SPARK-16120
             Project: Spark
          Issue Type: Test
          Components: Streaming, Tests
            Reporter: Ahmed Mahran
            Priority: Trivial


In ReceiverSuite.scala, in the test case "write ahead log - generating and cleaning", the inner method getCurrentLogFiles uses external variable logDirectory1 instead of the passed parameter logDirectory

{code}
def getCurrentLogFiles(logDirectory: File): Seq[String] = {
  try {
    if (logDirectory.exists()) {
      logDirectory1.listFiles().filter { _.getName.startsWith("log") }.map { _.toString }
    } else {
      Seq.empty
    }
  } catch {
    case e: Exception =>
      Seq.empty
  }
}
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org