Skip to content

Commit be4a4f6

Browse files
authored
Replace ERR with ERROR
1 parent bbb7020 commit be4a4f6

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

articles/machine-learning/how-to-troubleshoot-online-endpoints.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ Below is a list of common deployment errors that are reported as part of the dep
100100
* [OperationCancelled](#err-operationcancelled)
101101
* [InternalServerError](#err-internalservererror)
102102

103-
### ERR: OutOfQuota
103+
### ERROR: OutOfQuota
104104

105105
Below is a list of common resources that may run out of quota when using Azure services.
106106

@@ -140,11 +140,11 @@ To get the exact reason for an error, run:
140140
az ml online-deployment get-logs -e <endpoint-name> -n <deployment-name> -l 100
141141
```
142142

143-
### ERR: OutOfCapacity
143+
### ERROR: OutOfCapacity
144144

145145
The specified VM Size failed to provision due to a lack of Azure Machine Learning capacity. Retry later or try deploying to a different region.
146146

147-
### ERR: BadArgument
147+
### ERROR: BadArgument
148148

149149
Below is a list of reasons you may run into this error:
150150

@@ -203,7 +203,7 @@ You can also check if the blobs are present in the workspace storage account.
203203
204204
`az storage blob exists --account-name foobar --container-name 210212154504-1517266419 --name WebUpload/210212154504-1517266419/GaussianNB.pkl --subscription <sub-name>`
205205
206-
### ERR: ResourceNotReady
206+
### ERROR: ResourceNotReady
207207
208208
To run the `score.py` provided as part of the deployment, Azure creates a container that includes all the resources that the `score.py` needs, and runs the scoring script on that container. The error in this scenario is that this container is crashing when running, which means scoring couldn't happen. This error happens when:
209209
@@ -215,17 +215,17 @@ To run the `score.py` provided as part of the deployment, Azure creates a contai
215215
- Readiness or liveness probes are not set up correctly.
216216
- There's an error in the environment setup of the container, such as a missing dependency.
217217
218-
### ERR: ResourceNotFound
218+
### ERROR: ResourceNotFound
219219
220220
This error occurs when Azure Resource Manager (ARM) can't find a required resource. For example, you will receive this error if a storage account was referred to but cannot be found at the path on which it was specified. Be sure to double check resources which may have been supplied by exact path or the spelling of their names.
221221
222222
More details on this error can be found [here](https://aka.ms/ARMResourceNotFoundFix).
223223
224-
### ERR: OperationCancelled
224+
### ERROR: OperationCancelled
225225
226226
Azure operations have a certain priority level and are executed from highest to lowest. This error happens when your operation happened to be overridden by another operation which has a higher priority. Retrying the operation may allow it to be performed without cancellation.
227227
228-
### ERR: InternalServerError
228+
### ERROR: InternalServerError
229229
230230
While we do our best to provide a stable and reliable service, sometimes things don't go according to plan. If you get this error, it means something isn't right on our side and we need to fix it. Submit a [customer support ticket](https://portal.azure.com/#blade/Microsoft_Azure_Support/HelpAndSupportBlade/newsupportrequest) with all related information and we'll address the issue.
231231

0 commit comments

Comments
 (0)