Nick Maludy
Nick Maludy
+1 would like to see this merged, i had a similar problem trying to customize the formatting of the `SignalHandler` output
+1 we're having similar issues and would like to see this fixed
+1 Would like to see this as well.
+1 would like this also!
### Debugging If i run with `--debug` you can see the render parameter issue: ``` $ st2-rule-tester --rule=./rule.yaml --trigger-instance=./trigger.yaml --config-file=/etc/st2/st2.conf --debug 2019-05-29 14:54:15,053 INFO [-] Connecting to database "st2" @...
FYI i've been able to work around this problem using the `| json_escape` filter in my rule: ``` --- name: "quoted_param_in_trigger_bug" pack: "default" description: "Demos how quoted values in a...
The `| json_escape` trick only works if you're extracting a single field. If you're extracting an object or array you still get an error, see the rule below: ``` ---...
I was curious why CI wasn't catching these errors, here's my investigation ### Investigation - `Makefile` contains `lint-api-spec` target https://github.com/StackStorm/st2/blob/master/Makefile#L189-L197 - `lint-api-spec` target calls `st2common/bin/st2-validate-api-spec` https://github.com/StackStorm/st2/blob/master/Makefile#L197 - `st2common/bin/st2-validate-api-spec` calls `st2common.cmd.validate_api_spec.main`...
@Kami I'll investigate creating a python module. That makes a lot of sense, and i agree is probably more maintainable and scalable. What would the import statement look like for...