Skip to content

Commit

Permalink
Address begin delete (#2011)
Browse files Browse the repository at this point in the history
Change begin delete statement to address intermittent failures in:
- Safe Rollout
- SAI/UAI
  • Loading branch information
xanwal committed Jan 9, 2023
1 parent 50cbce6 commit 982f258
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@
},
"outputs": [],
"source": [
"ml_client.online_endpoints.begin_delete(endpoint_name).result()"
"ml_client.online_endpoints.begin_delete(endpoint_name)"
]
},
{
Expand Down Expand Up @@ -648,7 +648,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.4"
"version": "3.10.4 (main, Mar 31 2022, 08:41:55) [GCC 7.5.0]"
},
"vscode": {
"interpreter": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -794,7 +794,7 @@
},
"outputs": [],
"source": [
"ml_client.online_endpoints.begin_delete(endpoint_name).result()"
"ml_client.online_endpoints.begin_delete(endpoint_name)"
]
},
{
Expand Down Expand Up @@ -854,7 +854,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.4"
"version": "3.10.4 (main, Mar 31 2022, 08:41:55) [GCC 7.5.0]"
},
"vscode": {
"interpreter": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -538,7 +538,7 @@
"source": [
"ml_client.online_deployments.begin_delete(\n",
" name=\"blue\", endpoint_name=online_endpoint_name\n",
").wait()"
")"
]
},
{
Expand All @@ -556,7 +556,7 @@
},
"outputs": [],
"source": [
"ml_client.online_endpoints.begin_delete(name=online_endpoint_name).wait()"
"ml_client.online_endpoints.begin_delete(name=online_endpoint_name)"
]
}
],
Expand All @@ -579,7 +579,7 @@
"name": "python",
"nbconvert_exporter": "python",
"pygments_lexer": "ipython3",
"version": "3.10.4"
"version": "3.10.4 (main, Mar 31 2022, 08:41:55) [GCC 7.5.0]"
},
"vscode": {
"interpreter": {
Expand Down

0 comments on commit 982f258

Please sign in to comment.