From 0be03e8056755deaaf1492fa1df38907eade690e Mon Sep 17 00:00:00 2001 From: Erich Eckner Date: Fri, 25 May 2018 09:07:39 +0200 Subject: verbose_flock new: it calls flock and reports about blocking processes on error --- bin/get-assignment | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bin/get-assignment') diff --git a/bin/get-assignment b/bin/get-assignment index 6289da0..1c67279 100755 --- a/bin/get-assignment +++ b/bin/get-assignment @@ -70,13 +70,13 @@ fi # Create a lock file and a trap. exec 9> "${build_list_lock_file}" -if ! flock -n 9; then +if ! verbose_flock -n 9; then >&2 echo 'come back (shortly) later - I cannot lock build list.' exit 1 fi exec 8> "${sanity_check_lock_file}" -if ! flock -s -n 8; then +if ! verbose_flock -s -n 8; then >&2 echo 'come back (shortly) later - sanity-check running.' exit 1 fi -- cgit v1.2.3-54-g00ecf