@cronicorn/mcp-server 1.14.0 → 1.14.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -176,7 +176,8 @@ The Scheduler writes back to the database:
|
|
|
176
176
|
- `lastRunAt = now` (when this execution started)
|
|
177
177
|
- `nextRunAt = governor result` (when to run next)
|
|
178
178
|
- `failureCount`: reset to 0 on success, increment on failure
|
|
179
|
-
- Clear
|
|
179
|
+
- Clear consumed one-shot hints (if `aiHintNextRunAt <= now`)
|
|
180
|
+
- Clear all AI hints if TTL expired (if `aiHintExpiresAt <= now`)
|
|
180
181
|
|
|
181
182
|
The database update is atomic. If two Schedulers somehow claimed the same endpoint (shouldn't happen due to locks, but defensive programming), only one update succeeds.
|
|
182
183
|
|
package/package.json
CHANGED