Skip to content

Commit a40f0ba

Browse files
fixes
1 parent 88314f8 commit a40f0ba

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

articles/spring-apps/troubleshoot-exit-code.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,13 +38,13 @@ The exit code indicates the reason the application terminated. The following lis
3838

3939
- You don't have sufficient access to a third-party service.
4040

41-
For example, you need to connect to Azure key vault to import certificates in your application, but your app doesn't have the necessary permissions to access it.
41+
For example, you need to connect to Azure Key Vault to import certificates in your application, but your application doesn't have the necessary permissions to access it.
4242

4343
- **137** - The application exited because of an out of memory error. The application requested resources that the hosting platform failed to provide. Update your application's Java Virtual Machine (JVM) parameters to restrict resource usage, or scale up application resources.
4444

4545
If the application is a Java application, check the JVM parameters. They may exceed the memory limitation of your application.
4646

47-
For example, you configured 10 GB for the *Xmx* JVM parameter, but the application is using up to 5 GB of memory. Decrease the *Xmx* value or increase the application memory to make sure that the value of the *Xmx* parameter is lower or equal to the memory limitation of the application.
47+
For example, you configured 10 GB for the *Xmx* JVM parameter, but the application is using up to 5 GB of memory. Decrease the *Xmx* value or increase the application memory to make sure that the value of the *Xmx* parameter is lower or equal to the memory limit of the application.
4848

4949
- **143** - The application exited because it failed to respond to a health check due to an out of memory error or some other error.
5050

0 commit comments

Comments
 (0)