문제

Trying to find how to avoid hanging Xvfb processes in our Python application, when using PyVirtualDisplay. The essential problem is that calling display.stop() (see code sample below) does not seem to properly shut down the Xvfb process.

PyVirtualDisplay is very simply used:

from pyvirtualdisplay import Display

display = Display(backend='xvfb')
display.start()

... # Some stuff happens here

display.stop()

Now, the Display class has a slight modification to prevent Xvfb from using TCP ports: basically, add -nolisten tcp to the executing command. The modification is done by overriding the appropriate XfvbDisplay class's _cmd property:

@property
def _cmd(self):
    cmd = [PROGRAM,
           dict(black='-br', white='-wr')[self.bgcolor],
           '-screen',
           str(self.screen),
           'x'.join(map(str, list(self.size) + [self.color_depth])),
           self.new_display_var,
           '-nolisten',
           'tcp'
           ]
    return cmd

What is the proper way to end the Xvfb processes in this context so that they are terminated and do not linger?

Thanks very much!

도움이 되었습니까?

해결책

Your display, since it inherits from EasyProcess, will have a popen attribute at display.popen. You can use this to terminate, if EasyProcess isn't working properly.

So, you can do something like this:

display.popen.terminate()

or

display.popen.kill()

다른 팁

The answer by Jordan did not work for me. This worked:

display.sendstop()

FYI, none of these solutions work for me. It says display doesn't have an attribute sendstop or popen.

라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top