eric-maynard commented on code in PR #2643:
URL: https://github.com/apache/polaris/pull/2643#discussion_r2369585771
##########
client/python/cli/options/parser.py:
##########
@@ -55,26 +55,25 @@ class Parser(object):
str,
hint="access token for token-based authentication",
),
+ Argument(
+ Arguments.REALM,
+ str,
+ hint="realm to use. if not defined will be used default realm from
Polaris server. read more:
https://polaris.apache.org/releases/1.1.0/configuration/",
+ default=None
+ ),
+ Argument(
+ Arguments.REALM_HEADER,
+ str,
+ hint="realm header is defining header name to use as context
header name. if not defined will be used default from Polaris server",
+ default=DEFAULT_REALM_HEADER
+ ),
Argument(Arguments.PROFILE, str, hint="profile for token-based
authentication"),
Argument(Arguments.PROXY, str, hint="proxy URL"),
Argument(Arguments.DEBUG, bool, hint="Enable debug mode"),
]
@staticmethod
def _build_parser() -> argparse.ArgumentParser:
Review Comment:
This method's body is gone, but it wasn't removed
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]