Skip to content

Commit

Permalink
Fix regression that ignores stale SLO settings.
Browse files Browse the repository at this point in the history
  • Loading branch information
justinkambic committed Nov 26, 2024
1 parent a306667 commit fcd65bd
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ export class GetSLOsOverview {
filter: {
range: {
summaryUpdatedAt: {
lt: 'now-48h',
lt: `now-${settings.staleThresholdInHours}h`,
},
},
},
Expand All @@ -66,7 +66,7 @@ export class GetSLOsOverview {
filter: {
range: {
summaryUpdatedAt: {
gte: 'now-48h',
gte: `now-${settings.staleThresholdInHours}h`,
},
},
},
Expand Down

0 comments on commit fcd65bd

Please sign in to comment.