Skip to content

Commit 84c2a20

Browse files
Fix text for host and port with profile update (#4244)
1 parent 473bd22 commit 84c2a20

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

client/python/apache_polaris/cli/command/profiles.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -124,8 +124,8 @@ def _update_profile(self, name: str) -> None:
124124
input(f"Polaris Client Secret [{current_client_secret}]: ")
125125
or current_client_secret
126126
)
127-
host = input(f"Polaris Client ID [{current_host}]: ") or current_host
128-
port = input(f"Polaris Client Secret [{current_port}]: ") or current_port
127+
host = input(f"Polaris Host [{current_host}]: ") or current_host
128+
port = input(f"Polaris Port [{current_port}]: ") or current_port
129129
realm = input(f"Polaris Context Realm [{current_realm}]: ") or current_realm
130130
header = (
131131
input(f"Polaris Context Header Name [{current_header}]: ")

0 commit comments

Comments
 (0)