@@ -14,7 +14,6 @@ import os
import sys
import warnings
warnings.simplefilter("default")
-warnings.filterwarnings("ignore", category=DeprecationWarning, message=".*use.of.fork.*may.lead.to.deadlocks.in.the.child.*")
sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(__file__)),
'lib'))
@@ -16,7 +16,6 @@ import sys
import argparse
import warnings
warnings.simplefilter("default")
-warnings.filterwarnings("ignore", category=DeprecationWarning, message=".*use.of.fork.*may.lead.to.deadlocks.in.the.child.*")
bindir = os.path.dirname(__file__)
toolname = os.path.basename(__file__).split(".")[0]
@@ -9,7 +9,6 @@ import os
import sys
import warnings
warnings.simplefilter("default")
-warnings.filterwarnings("ignore", category=DeprecationWarning, message=".*use.of.fork.*may.lead.to.deadlocks.in.the.child.*")
import logging
sys.path.insert(0, os.path.join(os.path.dirname(os.path.dirname(sys.argv[0])), 'lib'))
@@ -15,9 +15,12 @@ import os
import sys
import io
import traceback
+import warnings
import bb
+warnings.filterwarnings("ignore", category=DeprecationWarning, message=".*use.of.fork.*may.lead.to.deadlocks.in.the.child.*")
+
def createDaemon(function, logfile):
"""
Detach a process from the controlling terminal and run it in the
Add the message filtering directly in the python module where the error happens, so we do not need to repeat the filter in all consumers. This will also make sure the filter is applied in any user of createDaemon(). Fixes [YOCTO #16080] Signed-off-by: Mathieu Dubois-Briand <mathieu.dubois-briand@bootlin.com> Suggested-by: Chen Qi <Qi.Chen@windriver.com> --- Changes in v2: - EDITME: describe what is new in this series revision. - EDITME: use bulletpoints and terse descriptions. - Link to v1: https://lore.kernel.org/r/20260205-mathieu-fork-warning-filter-v1-1-e4bef89403c1@bootlin.com --- bin/bitbake | 1 - bin/bitbake-layers | 1 - bin/bitbake-server | 1 - lib/bb/daemonize.py | 3 +++ 4 files changed, 3 insertions(+), 3 deletions(-) --- base-commit: 921e4ce1e030e4c8c3ecd5d6ffc7343df473d13c change-id: 20260205-mathieu-fork-warning-filter-9b867e1c6acb Best regards,