Skip to content

Commit 7c7d9bc

Browse files
authored
Merge pull request rdkcentral#5867 from gomathishankar37/bug-fix/RDKTV-34010
RDKTV-34010: Maintenance Status stuck at MAINTENANCE_STARTED
2 parents baf2fd7 + 2985aa3 commit 7c7d9bc

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

MaintenanceManager/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ All notable changes to this RDK Service will be documented in this file.
1616

1717
* For more details, refer to [versioning](https://github.com/rdkcentral/rdkservices#versioning) section under Main README.
1818

19+
## [1.0.38] - 2024-11-15
20+
### Added
21+
- MaintenanceManager is stuck at MAINTENANCE_STARTED in non-WAI case, when SUPPRESSED_MAINTENANCE is enabled with no Skip Firmware
22+
1923
## [1.0.37] - 2024-10-24
2024
### Remove
2125
- Decouple DCM from Unsolicited Maintenance and remove DCM references in MaintenanceManager

MaintenanceManager/MaintenanceManager.cpp

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -418,6 +418,12 @@ namespace WPEFramework {
418418
tasks.push_back(task_names_foreground[0].c_str());
419419
tasks.push_back(task_names_foreground[2].c_str());
420420
}
421+
else
422+
{
423+
tasks.push_back(task_names_foreground[0].c_str());
424+
tasks.push_back(task_names_foreground[1].c_str());
425+
tasks.push_back(task_names_foreground[2].c_str());
426+
}
421427
}
422428
#else
423429
tasks.push_back(task_names_foreground[0].c_str());

0 commit comments

Comments
 (0)