Hi everyone, is it possible to retry flow run only...
# ask-community
d
Hi everyone, is it possible to retry flow run only from database ?, e.g.
Copy code
update flow_run
set state_type = 'PENDING', state_name = 'Pending', state_timestamp = CURRENT_TIMESTAMP
where id = '7e151f5d-ec30-40be-b2f7-75cdfbc132c0';
j
Hi, unfortunately it is not. Server side state changes are expected to go through the orchestration engine via the
/set_state
endpoint
thank you 1