Skip to content
Snippets Groups Projects
Unverified Commit 193ebb6a authored by dpsutton's avatar dpsutton Committed by GitHub
Browse files

Add docstrings to persistence `jobs/defjob` macros (#22338)

parent fe5861e3
No related merge requests found
......@@ -164,12 +164,14 @@
[_job-context]
(prune-all-deletable! dispatching-refresher))
(jobs/defjob ^{org.quartz.DisallowConcurrentExecution true} PersistenceRefresh
[job-context]
(jobs/defjob ^{org.quartz.DisallowConcurrentExecution true
:doc "Refresh persisted tables job"}
PersistenceRefresh [job-context]
(refresh-job-fn! job-context))
(jobs/defjob ^{org.quartz.DisallowConcurrentExecution true} PersistencePrune
[job-context]
(jobs/defjob ^{org.quartz.DisallowConcurrentExecution true
:doc "Remove deletable persisted tables"}
PersistencePrune [job-context]
(prune-job-fn! job-context))
(def ^:private refresh-job-key
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment