Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,13 @@
{
"cell_type": "markdown",
"id": "3a676f58ecf52b42",
"metadata": {},
"metadata": {
"editable": true,
"slideshow": {
"slide_type": ""
},
"tags": []
},
"source": [
"## Prerequisites\n",
"\n",
Expand Down Expand Up @@ -686,7 +692,14 @@
" )\n",
" print(f\"✅ Second ECR repository '{launch_result_short.ecr_uri.split('/')[1]}' deleted\")\n",
" except Exception as e:\n",
" print(f\"⚠️ Failed to delete second ECR repository: {e}\")"
" print(f\"⚠️ Failed to delete second ECR repository: {e}\")\n",
"\n",
"# --- Delete local file to allow for consequtive executions of the notebook ---\n",
"try:\n",
" !rm -rf .bedrock_agentcore.yaml\n",
" print(f\"✅ .bedrock_agentcore.yaml deleted\")\n",
"except Exception as e:\n",
" print(f\"⚠️ Failed to delete .bedrock_agentcore.yaml: {e}\")"
]
},
{
Expand Down
Loading