File tree Expand file tree Collapse file tree 4 files changed +16
-14
lines changed Expand file tree Collapse file tree 4 files changed +16
-14
lines changed Original file line number Diff line number Diff line change 22
22
:javax {:dependencies [[io.factorhouse/cronut " 0.2.7" ]]} ; ; TODO fix up after release
23
23
:smoke {:pedantic? :abort }}
24
24
25
- :aliases {" check" [" with-profile" " +smoke,+jakarta" " check" ]
26
- " kondo" [" with-profile" " +smoke,+jakarta" " run" " -m" " clj-kondo.main" " --lint" " src:src:test:test" " --parallel" ]
27
- " fmt" [" with-profile" " +smoke,+jakarta" " cljfmt" " check" ]}
25
+ :aliases {" check" [" with-profile" " +smoke,+jakarta" " check" ]
26
+ " kondo" [" with-profile" " +smoke,+jakarta" " run" " -m" " clj-kondo.main" " --lint" " src:src:test:test" " --parallel" ]
27
+ " fmt" [" with-profile" " +smoke,+jakarta" " cljfmt" " check" ]
28
+ " fmtfix" [" with-profile" " +smoke" " cljfmt" " fix" ]}
28
29
29
30
:source-paths [" src" ]
30
31
:test-paths [" test" ]
Original file line number Diff line number Diff line change 20
20
[clj-kondo " 2025.06.05" ]]}
21
21
:smoke {:pedantic? :abort }}
22
22
23
- :aliases {" check" [" with-profile" " +smoke" " check" ]
24
- " kondo" [" with-profile" " +smoke" " run" " -m" " clj-kondo.main" " --lint" " src:src:test:test" " --parallel" ]
25
- " fmt" [" with-profile" " +smoke" " cljfmt" " check" ]}
23
+ :aliases {" check" [" with-profile" " +smoke" " check" ]
24
+ " kondo" [" with-profile" " +smoke" " run" " -m" " clj-kondo.main" " --lint" " src:src:test:test" " --parallel" ]
25
+ " fmt" [" with-profile" " +smoke" " cljfmt" " check" ]
26
+ " fmtfix" [" with-profile" " +smoke" " cljfmt" " fix" ]}
26
27
27
28
:source-paths [" src" ]
28
29
:test-paths [" test" ]
Original file line number Diff line number Diff line change 21
21
[clj-kondo " 2025.06.05" ]]}
22
22
:smoke {:pedantic? :abort }}
23
23
24
- :aliases {" check" [" with-profile" " +smoke" " check" ]
25
- " kondo" [" with-profile" " +smoke" " run" " -m" " clj-kondo.main" " --lint" " src:src:test:test" " --parallel" ]
26
- " fmt" [" with-profile" " +smoke" " cljfmt" " check" ]}
24
+ :aliases {" check" [" with-profile" " +smoke" " check" ]
25
+ " kondo" [" with-profile" " +smoke" " run" " -m" " clj-kondo.main" " --lint" " src:src:test:test" " --parallel" ]
26
+ " fmt" [" with-profile" " +smoke" " cljfmt" " check" ]
27
+ " fmtfix" [" with-profile" " +smoke" " cljfmt" " fix" ]}
27
28
28
29
:source-paths [" src" ]
29
30
:test-paths [" test" ]
Original file line number Diff line number Diff line change 37
37
(defn detail
38
38
[job concurrent-execution-disallowed?]
39
39
(let [{:keys [identity description recover? durable? disallow-concurrent-execution?]} job]
40
- (.build (cond->
41
- (-> (JobBuilder/newJob (if (or concurrent-execution-disallowed? ; ; global concurrency disallowed flag
42
- disallow-concurrent-execution?) ; ; job specific concurrency dissalowed flag
43
- SerialProxyJob ProxyJob))
44
- (.setJobData (JobDataMap. {" job-impl" job})))
40
+ (.build (cond-> (-> (JobBuilder/newJob (if (or concurrent-execution-disallowed? ; ; global concurrency disallowed flag
41
+ disallow-concurrent-execution?) ; ; job specific concurrency dissalowed flag
42
+ SerialProxyJob ProxyJob))
43
+ (.setJobData (JobDataMap. {" job-impl" job})))
45
44
(seq identity) (.withIdentity (first identity) (second identity))
46
45
description (.withDescription description)
47
46
(boolean? recover?) (.requestRecovery recover?)
You can’t perform that action at this time.
0 commit comments