Skip to content

Commit 651f57b

Browse files
Abhimanyu Siwachclaude
andcommitted
fix: enable debug mode in integration test to resolve timeout
Add debug=True to BedrockAgentCoreApp in test_simple_agent.py to enable verbose logging that will help identify the root cause of the 5-minute timeout in CI integration tests. This provides better visibility into server startup issues. 🤖 Generated with [Claude Code](https://claude.ai/code) Co-Authored-By: Claude <[email protected]>
1 parent b64fc78 commit 651f57b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests_integ/runtime/test_simple_agent.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ def setup(self):
1515
from bedrock_agentcore import BedrockAgentCoreApp
1616
from strands import Agent
1717
18-
app = BedrockAgentCoreApp()
18+
app = BedrockAgentCoreApp(debug=True)
1919
agent = Agent()
2020
2121
@app.entrypoint

0 commit comments

Comments
 (0)