Merge pull request #23791 from owncloud/fix-swift-test-mkfifo
Remove any stray socket files before creating new ones
This commit is contained in:
commit
2a7e9f08ff
|
@ -33,6 +33,7 @@ fi;
|
||||||
|
|
||||||
# create readiness notification socket
|
# create readiness notification socket
|
||||||
notify_sock=$(readlink -f "$thisFolder"/dockerContainerCeph.$EXECUTOR_NUMBER.amazons3.sock)
|
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"
|
mkfifo "$notify_sock"
|
||||||
|
|
||||||
user=test
|
user=test
|
||||||
|
|
|
@ -33,6 +33,7 @@ fi;
|
||||||
|
|
||||||
# create readiness notification socket
|
# create readiness notification socket
|
||||||
notify_sock=$(readlink -f "$thisFolder"/dockerContainerCeph.$EXECUTOR_NUMBER.swift.sock)
|
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"
|
mkfifo "$notify_sock"
|
||||||
|
|
||||||
port=5001
|
port=5001
|
||||||
|
|
Loading…
Reference in New Issue