params: update AthenadPid to use integer type (#35871)

* params: update `AthenadPid` to use integer type

* fix type
This commit is contained in:
Jason Wen
2025-08-01 12:29:25 -04:00
committed by GitHub
parent 2e4de9b7d8
commit f5991caf6f
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -270,7 +270,7 @@ class DaemonProcess(ManagerProcess):
stderr=open('/dev/null', 'w'),
preexec_fn=os.setpgrp)
self.params.put(self.param_name, str(proc.pid))
self.params.put(self.param_name, proc.pid)
def stop(self, retry=True, block=True, sig=None) -> None:
pass