We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c7737f3 commit f5901d2Copy full SHA for f5901d2
src/Jenssegers/Mongodb/Queue/MongoQueue.php
@@ -110,19 +110,6 @@ protected function releaseJob($id, $attempts)
110
]);
111
}
112
113
- /**
114
- * Mark the given job ID as reserved.
115
- *
116
- * @param string $id
117
- * @return void
118
- */
119
- protected function markJobAsReserved($id)
120
- {
121
- $this->database->collection($this->table)->where('_id', $id)->update([
122
- 'reserved' => 1, 'reserved_at' => $this->getTime(),
123
- ]);
124
- }
125
-
126
/**
127
* Delete a reserved job from the queue.
128
*
0 commit comments