Skip to content

Commit

Permalink
Undo commit from main
Browse files Browse the repository at this point in the history
  • Loading branch information
0marperez committed Oct 31, 2024
1 parent 2c09d37 commit 69466cf
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -423,8 +423,11 @@ private fun emitIdentityBusinessMetrics(identity: Identity, context: ExecutionCo
val identityAttributes = identity.attributes

if (identityAttributes.contains(BusinessMetrics)) {
identityAttributes[BusinessMetrics].forEach { metric ->
context.emitBusinessMetric(metric)
}
identityAttributes[BusinessMetrics]
.toList()
.reversed()
.forEach { metric ->
context.emitBusinessMetric(metric)
}
}
}

0 comments on commit 69466cf

Please sign in to comment.