Skip to content

Commit

Permalink
BEDS-306: monitoring: make status reports shoot and forget
Browse files Browse the repository at this point in the history
  • Loading branch information
invis-bitfly committed Sep 12, 2024
1 parent b50cbf8 commit dd4cd42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/pkg/monitoring/services/base.go
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ func NewStatusReport(id string, timeout time.Duration, check_interval time.Durat
err = db.ClickHouseNativeWriter.AsyncInsert(
ctx,
"INSERT INTO status_reports (emitter, event_id, deployment_type, insert_id, expires_at, timeouts_at, metadata) VALUES (?, ?, ?, ?, ?, ?, ?)",
true,
false, // true means wait for settlement, but we want to shoot and forget. false does mean we cant log any errors that occur during settlement
utils.GetUUID(),
id,
utils.Config.DeploymentType,
Expand Down

0 comments on commit dd4cd42

Please sign in to comment.