From e06e839521e652e98ead78df4fd317427ebbeceb Mon Sep 17 00:00:00 2001 From: Chris Hajas Date: Fri, 14 Jul 2017 09:53:44 -0700 Subject: [PATCH] Increase retry logic for gpmfr This ping test can sometimes fail. We previously added retry logic which significantly reduced failures, but some are still present. --- gpMgmt/bin/gpmfr.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/gpMgmt/bin/gpmfr.py b/gpMgmt/bin/gpmfr.py index 98aab0aa08..2c3dcc4789 100755 --- a/gpMgmt/bin/gpmfr.py +++ b/gpMgmt/bin/gpmfr.py @@ -1194,11 +1194,11 @@ class GpMfr(Operation): """ Try to reach DD three times, raise exception if ping test fails. """ - for i in range(3): + for i in range(10): loss = ddSystem.pingTest() if loss == 0: return - time.sleep(2) + time.sleep(6) # Non zero packet loss raise Exception("%s Data Domain not reachable." % ddSystem) -- GitLab