-
Notifications
You must be signed in to change notification settings - Fork 2.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix compiler errors in kafka-streams guide #8520
fix compiler errors in kafka-streams guide #8520
Conversation
ac30ac6
to
45a6a8f
Compare
@@ -116,7 +116,8 @@ import java.util.stream.Collectors; | |||
import javax.enterprise.context.ApplicationScoped; | |||
|
|||
import org.eclipse.microprofile.reactive.messaging.Outgoing; | |||
import org.jboss.logging.Logger; | |||
import org.slf4j.Logger; | |||
import org.slf4j.LoggerFactory; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmmm, no this is not good. We want to use JBoss Logging.
@cescoffier I let you have a look at that one? Looks related to your Kafka changes. |
Thanks btw! |
/cc @gunnarmorling too |
LGTM, apart from the logging change. Actual example needs updating, too? |
@gunnarmorling this PR is aligning the docs with what's in the quickstart https://github.com/quarkusio/quarkus-quickstarts/blob/master/kafka-streams-quickstart/producer/src/main/java/org/acme/kafka/streams/producer/generator/ValuesGenerator.java#L16 |
Yes, the quickstart should use JBoss Logging. Can you prepare a PR for the quickstart and adjust this one? Thanks! |
I pushed a change along those lines and also fixed the quickstart. Thanks! |
No description provided.