Skip to content

Commit 418640a

Browse files
committed
minor comments
1 parent bdb8920 commit 418640a

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

cronut-javax/test/cronut/job_test.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@
4949
(select-keys job-keys)
5050
(dissoc :fullName))))
5151

52-
;; global concurrentExecutionDisallowed? = false
52+
;; global concurrentExecutionDisallowed? = true
5353
(is (= {:jobClass SerialProxyJob
5454
:description nil
5555
:durable false

cronut-javax/test/cronut_test.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[cronut.trigger :as trigger])
66
(:import (org.quartz Job Trigger)))
77

8-
(defrecord TestDefrecordJobImpl [identity description recover? durable? test-dep disallowConcurrentExecution?]
8+
(defrecord TestDefrecordJobImpl [identity description recover? durable? test-dep disallow-concurrent-execution?]
99
Job
1010
(execute [this _job-context]
1111
(log/info "Defrecord Impl:" this)))

cronut/test/cronut/job_test.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@
4747
(select-keys job-keys)
4848
(dissoc :fullName))))
4949

50-
;; global concurrentExecutionDisallowed? = false
50+
;; global concurrentExecutionDisallowed? = true
5151
(is (= {:jobClass SerialProxyJob
5252
:description nil
5353
:durable false

cronut/test/cronut_test.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
[cronut.trigger :as trigger])
66
(:import (org.quartz Job Trigger)))
77

8-
(defrecord TestDefrecordJobImpl [identity description recover? durable? test-dep disallowConcurrentExecution?]
8+
(defrecord TestDefrecordJobImpl [identity description recover? durable? test-dep disallow-concurrent-execution?]
99
Job
1010
(execute [this _job-context]
1111
(log/info "Defrecord Impl:" this)))

0 commit comments

Comments
 (0)