Skip to content
Snippets Groups Projects
Commit 2a7e9f08 authored by Thomas Müller's avatar Thomas Müller
Browse files

Merge pull request #23791 from owncloud/fix-swift-test-mkfifo

Remove any stray socket files before creating new ones
parents 961bb4c3 d47824f4
No related branches found
No related tags found
No related merge requests found
......@@ -33,6 +33,7 @@ fi;
# create readiness notification socket
notify_sock=$(readlink -f "$thisFolder"/dockerContainerCeph.$EXECUTOR_NUMBER.amazons3.sock)
rm -f "$notify_sock" # in case an unfinished test left one behind
mkfifo "$notify_sock"
user=test
......
......@@ -33,6 +33,7 @@ fi;
# create readiness notification socket
notify_sock=$(readlink -f "$thisFolder"/dockerContainerCeph.$EXECUTOR_NUMBER.swift.sock)
rm -f "$notify_sock" # in case an unfinished test left one behind
mkfifo "$notify_sock"
port=5001
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment