fb09fd2a23
When enumerating connections with psutil, catch and ignore errors to avoid returning a stack trace. Co-authored-by: Matt Martz <matt@sivel.net>
13 lines
202 B
Python
13 lines
202 B
Python
from __future__ import absolute_import, division, print_function
|
|
__metaclass__ = type
|
|
|
|
import os
|
|
import sys
|
|
import time
|
|
|
|
child_pid = os.fork()
|
|
|
|
if child_pid > 0:
|
|
time.sleep(60)
|
|
else:
|
|
sys.exit()
|