Skip to content

Commit

Permalink
#1633 Fix observableId format in observables in job report
Browse files Browse the repository at this point in the history
  • Loading branch information
To-om committed Nov 13, 2020
1 parent fa627f1 commit 81dbfa7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ object JobOps {
.domainMap {
case (job, observablesWithLink) =>
val observables = observablesWithLink.map {
case (obs, l) => obs -> Json.obj("observableId" -> l)
case (obs, l) => obs -> Json.obj("observableId" -> l.headOption)
}
RichJob(job, observables)
}
Expand Down

0 comments on commit 81dbfa7

Please sign in to comment.