Skip to content

Commit

Permalink
Fixing typo with @SuppressWarnings
Browse files Browse the repository at this point in the history
mike4263 committed Jun 4, 2024
1 parent 1b0845e commit 18d7d27
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/main/java/com/redhat/naps/launch/ProcessMessage.java
Original file line number Diff line number Diff line change
@@ -5,7 +5,7 @@

public class ProcessMessage {

@SuppressWarnings()
@SuppressWarnings(value = "Used in Camel Route")
public Message parseMessage(Message msg, Exchange e) {
e.getIn().setHeader("queue", "ORM");
//( ( (GenericComposite) ( (Varies) ((GenericSegment) ((GenericMessage.V23) msg).structures.get("MSH").get(0).getMessage().get("MSH")).fields.get(8).get(0) ).data ).components.get(0) )
3 changes: 1 addition & 2 deletions src/main/resources/application.properties
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@

# Use Strimzi as it's power architecture compatible
quarkus.kafka.devservices.provider = strimzi

# Kafka topic Name
kafka.topic.name=test
kafka.topic.name=my-topic

# Kafka brokers in native test
%prod.camel.component.kafka.brokers=${BOOTSTRAP_URL:my-cluster-kafka-bootstrap:9092}

0 comments on commit 18d7d27

Please sign in to comment.