[ARVADOS] updated: 1.3.0-332-g014ddd17a
Git user
git at public.curoverse.com
Wed Feb 13 11:12:57 EST 2019
Summary of changes:
services/crunch-run/background.go | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
via 014ddd17a11522dfe731c516366b020cb921f279 (commit)
from 7b5a2c03af304bcab57d4928177ebfe9db01b786 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
commit 014ddd17a11522dfe731c516366b020cb921f279
Author: Tom Clegg <tclegg at veritasgenetics.com>
Date: Wed Feb 13 11:11:03 2019 -0500
14807: Fix crunch-run --list output when /var/lock is a symlink.
filepath.Walk(/var/lock) does not return entries inside /var/lock if
/var/lock is a symlink, as it is on debian:9.
Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg at veritasgenetics.com>
diff --git a/services/crunch-run/background.go b/services/crunch-run/background.go
index a50853837..34a7883f9 100644
--- a/services/crunch-run/background.go
+++ b/services/crunch-run/background.go
@@ -155,7 +155,7 @@ func kill(uuid string, signal syscall.Signal, stdout, stderr io.Writer) error {
// List UUIDs of active crunch-run processes.
func ListProcesses(stdout, stderr io.Writer) int {
- return exitcode(stderr, filepath.Walk(lockdir, func(path string, info os.FileInfo, err error) error {
+ return exitcode(stderr, filepath.Walk(lockdir+"/.", func(path string, info os.FileInfo, err error) error {
if info.IsDir() {
return filepath.SkipDir
}
-----------------------------------------------------------------------
hooks/post-receive
--
More information about the arvados-commits
mailing list