-
Notifications
You must be signed in to change notification settings - Fork 7
release: v1.25.1 WorkerBus reliability patch #308
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,7 +1,7 @@ | ||
| { | ||
| "name": "worldscript-studio", | ||
| "private": true, | ||
| "version": "1.25.0", | ||
| "version": "1.26.0", | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
If this release is cut using the commit's still-current release gate, which explicitly instructs pushing AGENTS.md reference: AGENTS.md:L339-L342 Useful? React with 👍 / 👎. |
||
| "description": "WorldScript Studio — offline-first, AI-powered creative writing application.", | ||
| "author": "QNBS", | ||
| "keywords": [ | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
When same-priority tasks target different pools and the older task's pool has no available worker,
WorkerBus.dequeueRunnableTask()callsPriorityTaskQueue.dequeueFirst(), whosefindIndex(predicate)skips that older entry and dispatches a newer runnable entry; an unavailable critical task can similarly be bypassed by a runnable lower-priority task. Therefore the unqualified claim that priority order and FIFO-within-tier are preserved under saturation is false for the multi-pool scheduler; describe these guarantees as applying among runnable tasks rather than documenting strict global ordering.AGENTS.md reference: AGENTS.md:L459-L464
Useful? React with 👍 / 👎.