Flow observes `suspend` setting and will wait for resume messages sent for the job before continuing to the next step in a flow. Adds endpoints under workspaces at `/jobs/<cancel|resume>/<job-uuid>` to either cancel or resume the job with a payload. For POST requests to the endpoint, payload is a JSON document. For GET requests to the endpoints, the payload is a base64url encoded JSON document as the value of the payload query parameter.
6 lines
90 B
SQL
6 lines
90 B
SQL
DROP TABLE resume_job;
|
|
|
|
ALTER TABLE queue
|
|
DROP COLUMN suspend,
|
|
DROP COLUMN suspend_until;
|