summaryrefslogtreecommitdiff
path: root/makima/src/db/repository.rs
diff options
context:
space:
mode:
authorsoryu <soryu@soryu.co>2026-02-04 01:59:40 +0000
committersoryu <soryu@soryu.co>2026-02-04 01:59:40 +0000
commit612cecc5bd5dbfc73d4a3a9d38626378eaf39041 (patch)
treee23a4772b5299082a99c5ec449cbe222dc038e98 /makima/src/db/repository.rs
parent40f4c4ebbb41a46d83fa67fa43e6ec683ab7fdb2 (diff)
downloadsoryu-612cecc5bd5dbfc73d4a3a9d38626378eaf39041.tar.gz
soryu-612cecc5bd5dbfc73d4a3a9d38626378eaf39041.zip
Remove chain supervisor capability
Chains no longer spawn a supervisor task. Checkpoint contracts will be automatically run as part of the DAG execution when dependencies complete. - Remove supervisor task creation from start_chain handler - Remove chain supervisor CLI commands - Remove supervisor_task_id from StartChainResponse - Remove withSupervisor option from frontend Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
Diffstat (limited to 'makima/src/db/repository.rs')
-rw-r--r--makima/src/db/repository.rs16
1 files changed, 0 insertions, 16 deletions
diff --git a/makima/src/db/repository.rs b/makima/src/db/repository.rs
index fb430ab..ec233ba 100644
--- a/makima/src/db/repository.rs
+++ b/makima/src/db/repository.rs
@@ -5687,22 +5687,6 @@ pub async fn get_chain_definition_graph(
}))
}
-/// Set the supervisor task ID for a chain.
-pub async fn set_chain_supervisor_task(
- pool: &PgPool,
- chain_id: Uuid,
- supervisor_task_id: Option<Uuid>,
-) -> Result<(), sqlx::Error> {
- sqlx::query(
- "UPDATE chains SET supervisor_task_id = $2, updated_at = NOW() WHERE id = $1",
- )
- .bind(chain_id)
- .bind(supervisor_task_id)
- .execute(pool)
- .await?;
- Ok(())
-}
-
/// Update chain status.
pub async fn update_chain_status(
pool: &PgPool,