You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
209
209
@@ -215,17 +215,17 @@ To run the `score.py` provided as part of the deployment, Azure creates a contai
215
215
- Readiness or liveness probes are not set up correctly.
216
216
- There's an error in the environment setup of the container, such as a missing dependency.
217
217
218
-
### ERR: ResourceNotFound
218
+
### ERROR: ResourceNotFound
219
219
220
220
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.
221
221
222
222
More details on this error can be found [here](https://aka.ms/ARMResourceNotFoundFix).
223
223
224
-
### ERR: OperationCancelled
224
+
### ERROR: OperationCancelled
225
225
226
226
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.
227
227
228
-
### ERR: InternalServerError
228
+
### ERROR: InternalServerError
229
229
230
230
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.
0 commit comments