From 71cc1aca74cb3d618d7ad06ca51aafbfca6f211b Mon Sep 17 00:00:00 2001 From: Orne Brocaar Date: Wed, 5 Mar 2025 15:50:27 +0000 Subject: [PATCH] Set FUOTA deployment completed_at. --- chirpstack/src/applayer/fuota/flow.rs | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/chirpstack/src/applayer/fuota/flow.rs b/chirpstack/src/applayer/fuota/flow.rs index 8a18fd16..92e840bf 100644 --- a/chirpstack/src/applayer/fuota/flow.rs +++ b/chirpstack/src/applayer/fuota/flow.rs @@ -523,7 +523,6 @@ impl Flow { info!("Complete FUOTA deployment"); self.job.attempt_count += 1; - self.fuota_deployment.completed_at = Some(Utc::now()); if self.fuota_deployment.request_fragmentation_session_status == RequestFragmentationSessionStatus::NoRequest @@ -543,6 +542,10 @@ impl Flow { .await?; } + let mut d = self.fuota_deployment.clone(); + d.completed_at = Some(Utc::now()); + let _ = fuota::update_deployment(d).await?; + Ok(None) } }