You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- removed task releasing. now only lock acquisition is required
- removed acquire lock mutex, it's enough to rely on redis
- added retry in TaskSchedulingPluginTest.kt as sometimes
- Bump to 2.2.1
Dependency version updates:
* Update to support latest versions of ktor, exposed, kotlin, etc
* remove dup dep
* update build pull request to use JDK 17 instead of 11
---------
Co-authored-by: Keith Mayoral <keith.mayoral@bird.co>
Copy file name to clipboardExpand all lines: ktor-server-task-scheduling/ktor-server-task-scheduling-core/src/commonMain/kotlin/io/github/flaxoos/ktor/server/plugins/taskscheduling/TaskSchedulingConfiguration.kt
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -51,7 +51,7 @@ public open class TaskSchedulingConfiguration {
Copy file name to clipboardExpand all lines: ktor-server-task-scheduling/ktor-server-task-scheduling-core/src/commonMain/kotlin/io/github/flaxoos/ktor/server/plugins/taskscheduling/managers/TaskManager.kt
Copy file name to clipboardExpand all lines: ktor-server-task-scheduling/ktor-server-task-scheduling-core/src/commonMain/kotlin/io/github/flaxoos/ktor/server/plugins/taskscheduling/managers/lock/TaskLockManager.kt
+1-10Lines changed: 1 addition & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -14,10 +14,6 @@ public abstract class TaskLockManager<TASK_LOCK : TaskLock> : TaskManager<TASK_L
Copy file name to clipboardExpand all lines: ktor-server-task-scheduling/ktor-server-task-scheduling-core/src/commonMain/kotlin/io/github/flaxoos/ktor/server/plugins/taskscheduling/managers/lock/database/DatabaseTaskLockManager.kt
+1-2Lines changed: 1 addition & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -85,5 +85,4 @@ public interface DatabaseTaskLock : TaskLock {
0 commit comments