Scheduler cleanup (#5571)
Some checks are pending
Canary / Prepare Version (push) Waiting to run
Canary / build-cli (push) Blocked by required conditions
Live Provider Tests / Smoke Tests (push) Blocked by required conditions
Documentation Site Preview / deploy (push) Waiting to run
Publish Docker Image / docker (push) Waiting to run
Canary / Upload Install Script (push) Blocked by required conditions
Canary / bundle-desktop (push) Blocked by required conditions
Canary / bundle-desktop-linux (push) Blocked by required conditions
Canary / bundle-desktop-windows (push) Blocked by required conditions
Canary / Release (push) Blocked by required conditions
CI / changes (push) Waiting to run
CI / Check Rust Code Format (push) Blocked by required conditions
CI / Build and Test Rust Project (push) Blocked by required conditions
CI / Test and Lint Electron Desktop App (push) Blocked by required conditions
Live Provider Tests / check-fork (push) Waiting to run
Live Provider Tests / changes (push) Blocked by required conditions
Live Provider Tests / Build Release Binary (push) Blocked by required conditions

Co-authored-by: Douwe Osinga <douwe@squareup.com>
This commit is contained in:
Douwe Osinga 2025-11-08 13:19:18 -05:00 committed by GitHub
parent 25dfd768e5
commit e5a1474b4c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
21 changed files with 1715 additions and 3902 deletions

View file

@ -1672,10 +1672,9 @@
{
"name": "limit",
"in": "query",
"required": false,
"required": true,
"schema": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}
@ -2353,10 +2352,6 @@
"cron": {
"type": "string"
},
"execution_mode": {
"type": "string",
"nullable": true
},
"id": {
"type": "string"
},
@ -4400,10 +4395,12 @@
},
"SessionsQuery": {
"type": "object",
"required": [
"limit"
],
"properties": {
"limit": {
"type": "integer",
"format": "int32",
"minimum": 0
}
}