AbsaOSS/atum

Readme example cannot be run

Closed this issue · 0 comments

Readme has a missing variable assignment.

Current

SparkSession.builder()
      .appName("An info file creation job")
      .getOrCreate()

should be

val spark = SparkSession.builder()
      .appName("An info file creation job")
      .getOrCreate()