Skip to content

Commit a522924

Browse files
committed
#389 Fix compilation for Scala 2.13.
1 parent 697a9d8 commit a522924

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pramen/core/src/main/scala/za/co/absa/pramen/core/notify/pipeline/PipelineNotificationBuilderHtml.scala

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -234,8 +234,8 @@ class PipelineNotificationBuilderHtml(implicit conf: Config) extends PipelineNot
234234

235235
private[core] def getSparkApplicationIds: Seq[String] = {
236236
sparkAppId match {
237-
case Some(appId) => (appId +: completedTasks.map(_.applicationId.trim).filter(_.nonEmpty)).distinct
238-
case None => completedTasks.map(_.applicationId.trim).filter(_.nonEmpty).distinct
237+
case Some(appId) => (appId +: completedTasks.map(_.applicationId.trim).filter(_.nonEmpty)).distinct.toSeq
238+
case None => completedTasks.map(_.applicationId.trim).filter(_.nonEmpty).distinct.toSeq
239239
}
240240
}
241241

0 commit comments

Comments
 (0)