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: [email protected]
For additional commands, e-mail: [email protected]