Browse Source

AMBARI-23211. Hive client Installation is failing (aonishuk)

Andrew Onishuk 7 years ago
parent
commit
f554d975c5
1 changed files with 1 additions and 0 deletions
  1. 1 0
      ambari-agent/src/main/python/ambari_agent/Utils.py

+ 1 - 0
ambari-agent/src/main/python/ambari_agent/Utils.py

@@ -221,6 +221,7 @@ def execute_with_retries(tries, try_sleep, retry_exception_class, func, *args, *
   for i in range(tries):
     try:
       func(*args, **kwargs)
+      break
     except retry_exception_class:
       if i==tries-1:
         raise