xBis7 commented on code in PR #43941:
URL: https://github.com/apache/airflow/pull/43941#discussion_r1882207855
##########
airflow/cli/cli_config.py:
##########
@@ -551,6 +551,9 @@ def string_lower_type(val):
action="store_true",
)
ARG_RAW = Arg(("-r", "--raw"), argparse.SUPPRESS, "store_true")
+ARG_CARRIER = Arg(
+ ("-c", "--carrier"), help="Context Carrier, containing the injected
context for the task span", nargs="?"
Review Comment:
`nargs=1` is converting the value into a list which complicates handling the
retrieved value. We can remove `nargs` entirely.
--
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]