Loïc Mathieu
Loïc Mathieu
> A worker will re-register itself when an heartbeat failed because the current state is either DEAD or EMPTY (i.e, worker was removed by the executor). I'm not convinced this...
A good addition for later would be to make the re-submission of task optional, maybe it would be great to open a followup issue about it.
Closed in favor of https://github.com/kestra-io/kestra/pull/2358
@tchiotludo I allow passing the version as an input and set a default value using the [ternary operator](https://docs.github.com/en/actions/learn-github-actions/expressions#example).
I'm not sure I understand the issue but it may be fixed by https://github.com/kestra-io/kestra/pull/2411
Dashboards will be rewritten soon, closing it.
@yuri1969 looking at what you did, it's not a quote filter but an escape filter, right? So maybe what we can do is something like: ``` "echo '--- {{ vars.quoted...
Note that your example will work using double-quotes for passing the command parameter ``` id: shellCommands namespace: test description: Demostrate passing untrusted inputs to shell as literal values inputs: -...
Anyway, I'm OK to add an `escapeChar` filter that will take the type of escaping as a parameter: ``` {{ "L'eau c'est la vie" | escapeChar('single') }} => L\'eau c\'est...
@tchiotludo I think this one should also be merged as it avoid a slight memory leak on killed execution.