From 41bae32a9f499a686536e485ac94915bb3e945b8 Mon Sep 17 00:00:00 2001 From: Yusuke Kuoka Date: Fri, 23 Sep 2022 04:33:25 +0000 Subject: [PATCH] runner: Dump supervisor log on dockerd timeout --- runner/startup.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/runner/startup.sh b/runner/startup.sh index ea651b9f..58ed446b 100755 --- a/runner/startup.sh +++ b/runner/startup.sh @@ -58,6 +58,7 @@ for process in "${processes[@]}"; do if [ $? -ne 0 ]; then log.error "$process is not running after max time" dump /var/log/dockerd.err.log 'Dumping {path} to aid investigation' + dump /var/log/supervisor/supervisord.log 'Dumping {path} to aid investigation' exit 1 else log.debug "$process is running"