瀏覽代碼

AMBARI-5649. Add postgres external as separate option in ambari-server.py. Attribute Error fix. (swagle)

Siddharth Wagle 11 年之前
父節點
當前提交
c22f056b74
共有 1 個文件被更改,包括 1 次插入1 次删除
  1. 1 1
      ambari-server/src/main/python/ambari-server.py

+ 1 - 1
ambari-server/src/main/python/ambari-server.py

@@ -2065,7 +2065,7 @@ def find_jdk():
 # Checks if options determine local DB configuration
 #
 def is_local_database(args):
-  return args.persistence_type == 'local'
+  return hasattr(args, 'persistence_type') and args.persistence_type == 'local'
 
 
 #Check if required jdbc drivers present