AnandInguva commented on issue #29037: URL: https://github.com/apache/beam/issues/29037#issuecomment-1767374062
One more thing before closing - the way you are passing pipeline options, the values for those options are lazily updated. When the parser parses the command line args, it maps `--extra_package` to `--extra_packages`. So when you want to lazily provide value for pipeline options, you should pass `extra_packages` instead of `extra_package` since the dest is `extra_packages` at https://github.com/apache/beam/blob/eb7997145e4645aaa36ce33fc21924081c1f3735/sdks/python/apache_beam/options/pipeline_options.py#L1307 -- 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]
