wu-sheng commented on pull request #6211:
URL: https://github.com/apache/skywalking/pull/6211#issuecomment-760555867
> in which we set a tag, which is not overridable
This mostly likely is caused by your tag declaration. If you want override
supported, use this constructor to create the tag, and give it a unique `id`.
See `status_code` tag.
```java
public StringTag(int id, String tagKey, boolean canOverWrite) {
super(id, tagKey, canOverWrite);
}
```
----------------------------------------------------------------
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.
For queries about this service, please contact Infrastructure at:
[email protected]