Copilot commented on code in PR #88:
URL:
https://github.com/apache/skywalking-banyandb-java-client/pull/88#discussion_r2185319264
##########
README.md:
##########
@@ -235,6 +235,11 @@ Measure m = Measure.newBuilder()
.setName("entity_id")
.setType(
TagType.TAG_TYPE_STRING))
+ .addTags(
Review Comment:
The example is missing a `.build()` call on the `TagSpec` builder. Without
it, `addTags` receives a builder instead of a built `TagSpec`. Append
`.build()` to the builder chain, e.g.,
`TagSpec.newBuilder()...setType(...).build()`.
--
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]