sadadw1 opened a new issue, #671:
URL: https://github.com/apache/ozhera/issues/671
### Problem
In
`ozhera-monitor/ozhera-monitor-server/src/main/java/org/apache/ozhera/monitor/controller/AppMonitorController.java`
(around line 421), the success response returned after deleting an app uses
the misspelled word `sucess`:
```java
return Result.success("sucess");
```
### Expected
The string literal should be `success`:
```java
return Result.success("success");
```
### Impact
Pure string literal typo in a success message; no behavior or logic change.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]