potiuk commented on code in PR #35146:
URL: https://github.com/apache/airflow/pull/35146#discussion_r1370052081
##########
airflow/cli/commands/kerberos_command.py:
##########
@@ -33,6 +34,17 @@ def kerberos(args):
"""Start a kerberos ticket renewer."""
print(settings.HEADER)
+ mode_mapping = {
+ "daemon": KerberosMode.DAEMON,
+ "one-time": KerberosMode.ONE_TIME,
+ }
+ if args.mode:
Review Comment:
I believe we also have to describe the mode similar to other CLI switches so
that it shows up in the --help output?
--
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]