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
When you have store:true in io.kestra.plugin.jdbc.mysql.Query the task will execute but it won't update anything until you remove or disable store. For example:
- id: wp_user_update
type: io.kestra.plugin.jdbc.mysql.Query
store: true
sql: |
UPDATE wp_users
SET user_login = "{{ inputs.email_new }}",
user_email = "{{ inputs.email_new }}"
WHERE ID = 123
A task like this executes but won't update anything.
Environment
Kestra Version: v0.21.1
The text was updated successfully, but these errors were encountered:
Describe the issue
When you have
store:true
inio.kestra.plugin.jdbc.mysql.Query
the task will execute but it won't update anything until you remove or disablestore
. For example:A task like this executes but won't update anything.
Environment
The text was updated successfully, but these errors were encountered: