Skip to content

Commit 16a5640

Browse files
authored
Merge pull request #3117 from IntersectMBO/rm_supervisord_socket
Remove stale supervisord socket
2 parents 59cfc22 + d594c8c commit 16a5640

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

cardano_node_tests/cluster_scripts/testnets/start-cluster

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ PID_FILE="\$SCRIPT_DIR/supervisord.pid"
152152
SUPERVISORD_SOCKET_PATH="${SUPERVISORD_SOCKET_PATH}"
153153
154154
if [ -e "\$SUPERVISORD_SOCKET_PATH" ]; then
155-
supervisorctl -s unix:///\${SUPERVISORD_SOCKET_PATH} stop all
155+
supervisorctl -s unix:///\${SUPERVISORD_SOCKET_PATH} stop all || rm -f "\$SUPERVISORD_SOCKET_PATH"
156156
fi
157157
158158
if [ ! -f "\$PID_FILE" ]; then

poetry.lock

Lines changed: 4 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pytest-xdist = "^3.7.0"
4242
PyYAML = "^6.0.2"
4343
requests = "^2.32.4"
4444
pytest-subtests = "^0.14.2"
45-
cardonnay = "^0.2.1"
45+
cardonnay = "^0.2.2"
4646

4747
[tool.poetry.group.dev]
4848
optional = true

0 commit comments

Comments
 (0)