Skip to content

Commit d06d357

Browse files
committed
fix(cli): more robust method call
Signed-off-by: Chris Snow <[email protected]>
1 parent 160f13f commit d06d357

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

hpecp/cli/datatap.py

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -117,18 +117,18 @@ def create_hdfs_with_kerberos(
117117
), "'read-only' parameter must be 'True' or 'False'"
118118

119119
base.get_client().datatap.create_hdfs_with_kerberos(
120-
name,
121-
description,
122-
path_from_endpoint,
123-
kdc_data_host,
124-
kdc_data_port,
125-
realm,
126-
client_principal,
127-
browse_only,
128-
host,
129-
keytab,
130-
backup_host,
131-
type,
132-
port,
133-
read_only,
120+
name=name,
121+
description=description,
122+
path_from_endpoint=path_from_endpoint,
123+
kdc_data_host=kdc_data_host,
124+
kdc_data_port=kdc_data_port,
125+
realm=realm,
126+
client_principal=client_principal,
127+
browse_only=browse_only,
128+
host=host,
129+
keytab=keytab,
130+
backup_host=backup_host,
131+
type=type,
132+
port=port,
133+
read_only=read_only,
134134
)

0 commit comments

Comments
 (0)