Remove todo comments

This commit is contained in:
Marek Wolan
2023-08-31 11:32:11 +01:00
parent f60f775f03
commit bd5aacaf0c
2 changed files with 10 additions and 3 deletions

View File

@@ -132,7 +132,7 @@ class Service(IOSoftware):
if self.operating_state in [ServiceOperatingState.RUNNING, ServiceOperatingState.PAUSED]:
self.parent.sys_log.info(f"Pausing service {self.name}")
self.operating_state = ServiceOperatingState.RESTARTING
self.restart_countdown = self.restarting_duration # TODO: implement restart duration
self.restart_countdown = self.restarting_duration
def disable(self) -> None:
"""Disable the service."""