damonb123 opened a new issue, #6777:
URL: https://github.com/apache/cloudstack/issues/6777
##### ISSUE TYPE
<!-- Pick one below and delete the rest -->
* Bug Report
##### COMPONENT NAME
~~~
CloudStack API
~~~
##### CLOUDSTACK VERSION
~~~
4.16.x, 4.17.0.1
~~~
##### SUMMARY
Create tags overrides getEnvtype() returns the wrong event type.
```java
@Override
public String getEventType() {
return EventTypes.EVENT_RESOURCE_ICON_UPLOAD;
}
```
Unless I am misunderstanding, it should be:
```java
@Override
public String getEventType() {
return EventTypes.EVENT_TAGS_CREATE;
}
```
--
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]