Skip to content

Commit

Permalink
Merge pull request #500 from ChoiByungWook/fix_delete
Browse files Browse the repository at this point in the history
fix endpoint deletion
  • Loading branch information
ChoiByungWook authored Nov 28, 2018
2 parents c496203 + 7d0f336 commit b9fafac
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
"source": [
"### Delete the endpoint\n",
"\n",
"After you have finished with this example, remember to delete the prediction endpoint to release the instance(s) associated with it."
"After you have finished with this example, remember to delete the prediction endpoint."
]
},
{
Expand All @@ -267,7 +267,7 @@
"source": [
"import sagemaker\n",
"\n",
"sagemaker.Session().delete_endpoint(predictor.endpoint)"
"predictor.delete_endpoint()"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@
"source": [
"import sagemaker\n",
"\n",
"sagemaker.Session().delete_endpoint(predictor.endpoint)"
"predictor.delete_endpoint()"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -425,7 +425,7 @@
"source": [
"import sagemaker\n",
"\n",
"sagemaker.Session().delete_endpoint(iris_predictor.endpoint)"
"iris_predictor.delete_endpoint()"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -431,7 +431,7 @@
"source": [
"# Delete the Endpoint\n",
"\n",
"After you have finished with this example, remember to delete the prediction endpoint to release the instance(s) associated with it."
"After you have finished with this example, remember to delete the prediction endpoint."
]
},
{
Expand All @@ -451,7 +451,7 @@
"source": [
"import sagemaker\n",
"\n",
"sagemaker.Session().delete_endpoint(iris_predictor.endpoint)"
"iris_predictor.delete_endpoint()"
]
}
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@
"source": [
"import sagemaker\n",
"\n",
"sagemaker.Session().delete_endpoint(predictor.endpoint)"
"predictor.delete_endpoint()"
]
}
],
Expand Down

0 comments on commit b9fafac

Please sign in to comment.