diff options
author | Gabriel A. Giovanini <mail@gabrielgio.me> | 2018-02-19 21:33:15 -0300 |
---|---|---|
committer | Gabriel A. Giovanini <mail@gabrielgio.me> | 2018-02-19 21:33:15 -0300 |
commit | 8e06fdb6f18e8cc63a5d501e68a175685fb808b5 (patch) | |
tree | 3672b85d75186191aaf06f64e415c4b13874adaa /src/clj | |
parent | ff69f08e64ad890255fb0f9e957be4e00b1c404f (diff) | |
download | queue-api-8e06fdb6f18e8cc63a5d501e68a175685fb808b5.tar.gz queue-api-8e06fdb6f18e8cc63a5d501e68a175685fb808b5.tar.bz2 queue-api-8e06fdb6f18e8cc63a5d501e68a175685fb808b5.zip |
Adds more test
Diffstat (limited to 'src/clj')
-rw-r--r-- | src/clj/queue_api/db/core.clj | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/clj/queue_api/db/core.clj b/src/clj/queue_api/db/core.clj index 88e6eed..f40548c 100644 --- a/src/clj/queue_api/db/core.clj +++ b/src/clj/queue_api/db/core.clj @@ -147,7 +147,7 @@ (bind-agent a j)))) (defn dequeue-job - "Dequeue a job from a agent `id`" + "Dequeue a job to a agent `id`" [^String id] (let [a (d/entity @conn [:agent/id id])] (if (not (nil? a)) |