Browse Source

HUE-5143 [jb] rm_ha decorator decorator does not specify the user correctly

Romain Rigaux 9 years ago
parent
commit
c875f7a
1 changed files with 1 additions and 1 deletions
  1. 1 1
      desktop/libs/hadoop/src/hadoop/cluster.py

+ 1 - 1
desktop/libs/hadoop/src/hadoop/cluster.py

@@ -71,7 +71,7 @@ def rm_ha(funct):
       ex_message = str(ex)
       if 'Connection refused' in ex_message or 'Connection aborted' in ex_message or 'standby RM' in ex_message:
         LOG.info('Resource Manager not available, trying another RM: %s.' % ex)
-        rm_ha = get_next_ha_yarncluster(current_user=api.user())
+        rm_ha = get_next_ha_yarncluster(current_user=api.user)
         if rm_ha is not None:
           if rm_ha[1].url == api.resource_manager_api.url:
             raise ex