Hi, I have the following command in my start function in the python script, but the output from the daemon_cmd is not appearing in the container log files.
Execute(daemon_cmd,
logoutput=True,
wait_for_finish=False)
But if I run the same command via os.system() as below, the output comes
into the container logs.
os.system(daemon_cmd)
Why is it not happening with Execute command, is there anything missing in
my call? Please help.
Thanks,
Kishore
