Skip to content

Commit

Permalink
change case None -> None to case None -> null
Browse files Browse the repository at this point in the history
  • Loading branch information
nikitag55 committed Mar 22, 2024
1 parent d14d674 commit 30b4dee
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ case class BatchExporter(downsamplerSettings: DownsamplerSettings, userStartTime
exportTableConfig.labelColumnMapping.foreach { pair =>
val result = exportData.labels.get(pair._1) match {
case Some(labelValue) => labelValue
case None => None
case None => null
}
dataSeq.append(result)
}
Expand Down

0 comments on commit 30b4dee

Please sign in to comment.