mirror of https://github.com/databricks/cli.git
invert print order
This commit is contained in:
parent
78b0cfd008
commit
07c8dbcc56
|
@ -92,7 +92,7 @@ func (r *pipelineRunner) logErrorEvent(ctx context.Context, pipelineId string, u
|
||||||
// for the pipeline are should be very close 0, and this would not be worth the additional
|
// for the pipeline are should be very close 0, and this would not be worth the additional
|
||||||
// complexity and latency cost for that extremely rare edge case
|
// complexity and latency cost for that extremely rare edge case
|
||||||
updateEvents := filterEventsByUpdateId(res.Events, updateId)
|
updateEvents := filterEventsByUpdateId(res.Events, updateId)
|
||||||
for i := 0; i < len(updateEvents); i++ {
|
for i := len(updateEvents) - 1; i >= 0; i-- {
|
||||||
r.logEvent(updateEvents[i])
|
r.logEvent(updateEvents[i])
|
||||||
}
|
}
|
||||||
return nil
|
return nil
|
||||||
|
|
Loading…
Reference in New Issue