{"record":{"id":"d00fe6c117187e24","repo":"conductor-oss/conductor","slug":"no-execution-found-for-id-executionid-d00fe6","errorCode":null,"errorMessage":"No execution found for id: {executionId}","messagePattern":"No execution found for id: (.+?)","errorType":"exception","errorClass":"IllegalStateException","httpStatus":null,"severity":"error","filePath":"agentspan/src/main/java/org/conductoross/conductor/ai/agentspan/runtime/service/BedrockAgentClient.java","lineNumber":136,"sourceCode":"        return ConductorAgentStatusResponse.builder()\n                .executionId(executionId)\n                .status(agentState)\n                .complete(\n                        agentState == ConductorAgentState.COMPLETED\n                                || agentState == ConductorAgentState.FAILED)\n                .running(agentState == ConductorAgentState.RUNNING)\n                .waiting(agentState == ConductorAgentState.WAITING)\n                .output(state.output)\n                .pendingTool(state.pendingTool)\n                .pendingToolName(state.pendingToolName)\n                .build();\n    }\n\n    @Override\n    public void respond(ConductorAgentRespondRequest request) {\n        ExecutionState state = executions.get(request.getExecutionId());\n        if (state == null) {\n            throw new IllegalStateException(\n                    \"No execution found for id: \" + request.getExecutionId());\n        }\n\n        // Build the returnControlInvocationResults from the respond body\n        String toolResult = request.getBody() != null ? request.getBody().toString() : \"\";\n        ContentBody contentBody = ContentBody.builder().body(toolResult).build();\n\n        SessionState sessionState =\n                SessionState.builder()\n                        .returnControlInvocationResults(\n                                rb ->\n                                        rb.apiResult(\n                                                ar ->\n                                                        ar.actionGroup(state.pendingToolName)\n                                                                .apiPath(\"/invoke\")\n                                                                .httpMethod(\"POST\")\n                                                                .responseBody(\n                                                                        Map.of(","sourceCodeStart":118,"sourceCodeEnd":154,"githubUrl":"https://github.com/conductor-oss/conductor/blob/cf7c3e4a8adfb158be778ab1ec525323c363cd3a/agentspan/src/main/java/org/conductoross/conductor/ai/agentspan/runtime/service/BedrockAgentClient.java#L118-L154","documentation":"Error \"No execution found for id: {executionId}\" thrown in conductor-oss/conductor.","triggerScenarios":"Thrown at agentspan/src/main/java/org/conductoross/conductor/ai/agentspan/runtime/service/BedrockAgentClient.java:136 when the library encounters an invalid state.","commonSituations":"See trigger scenarios.","solutions":["Verify the executionId exists and was created through the Bedrock agent client.","Check that the execution has not been pruned from the store."],"exampleFix":null,"handlingStrategy":null,"validationCode":null,"typeGuard":null,"tryCatchPattern":null,"preventionTips":[],"tags":[],"backgroundTag":null,"analyzedSha":"cf7c3e4a8adfb158be778ab1ec525323c363cd3a","analyzedAt":"2026-08-14T03:33:19.897Z","schemaVersion":2},"datasetVersion":"2026-08-14T05:17:29.042Z"}