From f5d04291af2d49c9f59049fd7d85a8aabfc74541 Mon Sep 17 00:00:00 2001 From: Anthony Romano Date: Thu, 3 Aug 2017 11:18:36 -0700 Subject: [PATCH] e2e: change debug lock signal to SIGTERM Try to clear that SIGPENDING in jenkins --- e2e/ctl_v3_lock_test.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/e2e/ctl_v3_lock_test.go b/e2e/ctl_v3_lock_test.go index ddda3fc03ccd..f044400e6d21 100644 --- a/e2e/ctl_v3_lock_test.go +++ b/e2e/ctl_v3_lock_test.go @@ -41,8 +41,9 @@ func init() { // ppc64le. debugLockSignal = syscall.SIGKILL default: - // stack dumping OK - debugLockSignal = syscall.SIGQUIT + // stack dumping is broken on jenkins + debugLockSignal = syscall.SIGTERM + // debugLockSignal = syscall.SIGQUIT } }