You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Because self.add_dragonfly_handlers(extra_args) (containing the handler.update_parser()) is called after these_args = argparse.ArgumentParser.parse_args(self), parser instructions contained by the handlers are not included in dragonfly.
The text was updated successfully, but these errors were encountered:
It's complicated -
If you moved the call to self.add_dragonfly_handlers(extra_args) from the middle of parse_args to the bottom of init where self.add_dragonfly_subcommands() is called, that would make sense. But extra_args is modified by the argparser (because the amqp handler defines a Service, which needs a broker).
Because
self.add_dragonfly_handlers(extra_args)
(containing thehandler.update_parser()
) is called afterthese_args = argparse.ArgumentParser.parse_args(self)
, parser instructions contained by the handlers are not included in dragonfly.The text was updated successfully, but these errors were encountered: