juju-solutions / matrix

Automatic testing of big software deployments under various failure conditions
Other
8 stars 9 forks source link

Feature/hadoop processing fixes #34

Closed pengale closed 7 years ago

pengale commented 7 years ago

@bcsaller @johnsca This gets us to the point where we can deploy and run glitch on the hadoop-processing bundle.

Resetting fails -- we run into that "bundle is changing too fast" error. But we already have an issue open related to that.

This probably conflicts w/ https://github.com/juju-solutions/matrix/pull/32

Will work on that next ...

johnsca commented 7 years ago

Out of curiosity, why have two decorators instead of one called as either @action() or @action('tag')?

pengale commented 7 years ago

@johnsca Since most of the actions don't need tags, I figured it was cleaner to have @action for most things. It prevents mistakes, where somebody leaves off the parens because they're not passing any args, and then things break.