mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2025-07-09 01:58:53 +00:00

* feat: prep for collate support - Added support for delayed background jobs. This is to delete the support user after a while. - added ScheduleType.OnlyManual for applications to support only manual triggers - Added a four hour token expiration - Allow a null trigger type in job data (not sure what it's for) * added test for delayed job * added type checking for enumCleanupArgs in navbar * - added a support toten type - added job handler for delete token * fixed whitelist links * patch OnlyManual apps * Update openmetadata-spec/src/main/resources/json/schema/entity/applications/app.json Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> * added indexes for runAt * use NO_JOB_SLEEP_SECONDS in background job test * Fixed NavBar test * removed backticls * fix indexes * change for support app * fix tests --------- Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com> Co-authored-by: Karan Hotchandani <33024356+karanh37@users.noreply.github.com> Co-authored-by: karanh37 <karanh37@gmail.com> Co-authored-by: Pere Miquel Brull <peremiquelbrull@gmail.com>
5 lines
123 B
SQL
5 lines
123 B
SQL
ALTER TABLE background_jobs
|
|
ADD COLUMN runAt BIGINT;
|
|
|
|
CREATE INDEX background_jobs_run_at_index ON background_jobs(runAt);
|