Task attempt 17522bd1-991c-42e0-adb9-8f5a189c983d - Final changes

This commit is contained in:
Louis Knight-Webb
2025-06-25 00:20:18 +01:00
parent 06563f7be4
commit 81434f52c1

View File

@@ -576,6 +576,9 @@ impl TaskAttempt {
.await?
.ok_or(TaskAttemptError::TaskNotFound)?; // No session found
// Update the executor session with the new prompt
ExecutorSession::update_prompt(pool, executor_session.id, prompt).await?;
// Determine the executor config from the stored executor_type
let executor_config = match most_recent_coding_agent.executor_type.as_deref() {
Some("claude") => crate::executor::ExecutorConfig::Claude,