diff --git a/VERSION b/VERSION index 142464b..027934e 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.11.0 \ No newline at end of file +0.11.1 \ No newline at end of file diff --git a/internal/metrics/metrics.go b/internal/metrics/metrics.go index 5c82f27..755e7a2 100644 --- a/internal/metrics/metrics.go +++ b/internal/metrics/metrics.go @@ -267,6 +267,9 @@ func CompareAndUpdateMetrics(currentService interface{}, updatedPlugin interface if !updated.LastFailedRun.IsZero() { currentServiceTyped.LastFailedRun = updated.LastFailedRun } + if !updated.LastCanceledRun.IsZero() { + currentServiceTyped.LastCanceledRun = updated.LastCanceledRun + } if updated.LastSuccessfulRunJobUrl != "" { currentServiceTyped.LastSuccessfulRunJobUrl = updated.LastSuccessfulRunJobUrl }