Open
Description
Quite often I realise I need to do some changes in feature fields before behat execution in docker completes, so I press CTRL-C to stop it. But the CTRL-C does not work the same in PHP inside docker and so the selenium session does not get terminated properly and because there is a default maximum session limit of 1 in standalone chrome selenium then the next behat gets stuck for 300 seconds until the selenium session times out (or until you restart selenium).
Workaround is to increase the maximum number of sessions like this
services:
selenium:
ports:
- "${MOODLE_DOCKER_SELENIUM_VNC_PORT}:5900"
environment:
# Workaround for https://github.com/SeleniumHQ/docker-selenium/issues/227
"no_proxy": localhost
# Allow new behat after CTRL-C, the aborted sessions will time out in 300 seconds by default.
SE_NODE_MAX_SESSIONS: 8
SE_NODE_OVERRIDE_MAX_SESSIONS: true
I wanted to ask you guys, is there is a better way to deal with CTRL-C so that standard PHP signal handling works as usual?
Metadata
Metadata
Assignees
Labels
No labels