[ARVADOS] updated: 1.2.0-220-g986a0a7dc

Git user git at public.curoverse.com
Tue Oct 23 11:53:51 EDT 2018


Summary of changes:
 services/crunch-run/crunchrun.go | 3 +++
 1 file changed, 3 insertions(+)

       via  986a0a7dcb98af92de23fecd745bb23768fe4647 (commit)
      from  3568f12c9b36cbd11c3cc9d229919a073c0fb43b (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 986a0a7dcb98af92de23fecd745bb23768fe4647
Author: Tom Clegg <tclegg at veritasgenetics.com>
Date:   Tue Oct 23 11:52:45 2018 -0400

    14328: Check broken-node blacklist when watchdog hits errors.
    
    Arvados-DCO-1.1-Signed-off-by: Tom Clegg <tclegg at veritasgenetics.com>

diff --git a/services/crunch-run/crunchrun.go b/services/crunch-run/crunchrun.go
index 7f5a85e80..39cf44082 100644
--- a/services/crunch-run/crunchrun.go
+++ b/services/crunch-run/crunchrun.go
@@ -1143,6 +1143,9 @@ func (runner *ContainerRunner) WaitFinish() error {
 			ctrs, err := runner.Docker.ContainerList(context.Background(), dockertypes.ContainerListOptions{})
 			if err != nil {
 				runner.CrunchLog.Printf("error checking container list: %s", err)
+				if runner.checkBrokenNode(err) {
+					return
+				}
 				continue polling
 			}
 			for _, ctr := range ctrs {

-----------------------------------------------------------------------


hooks/post-receive
-- 




More information about the arvados-commits mailing list