You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- uri: file:///opt/input/source/src/main/java/com/redhat/coolstore/service/ShoppingCartOrderProcessor.javamessage: "JMS `Topic`s should be replaced with Micrometer `Emitter`s feeding a Channel. "codeSnip: "<REDACTED_FOR_BREVITY>"lineNumber: 24variables:
file: file:///opt/input/source/src/main/java/com/redhat/coolstore/service/ShoppingCartOrderProcessor.javakind: Fieldname: ordersTopic
A solved example for above incident already exists in the database. See following example:
- uri: file:///tmp/source-code/src/main/java/org/jboss/as/quickstarts/servlet/HelloWorldMDBServletClient.javamessage: "JMS `Topic`s should be replaced with Micrometer `Emitter`s feeding a Channel. See the following example of migrating\n a Topic to an Emitter:\n\n Before:\n ```\n @Resource(lookup = \"java:/topic/HELLOWORLDMDBTopic\")\n private Topic topic;\n ```\n\n After:\n ```\n @Inject\n @Channel(\"HELLOWORLDMDBTopic\")\n Emitter<String> topicEmitter;\n ```"codeSnip: "<REDACTED_FOR_BREVITY>"lineNumber: 29variables:
file: file:///tmp/source-code/src/main/java/org/jboss/as/quickstarts/servlet/HelloWorldMDBServletClient.javakind: Modulename: javax.jms.Topicpackage: org.jboss.as.quickstarts.servlet
The above example should be picked up but it is not because the name and type field in the variables is different in both of these incidents. The fix for both of these incidents essentially is the same.
The text was updated successfully, but these errors were encountered:
I am working on the following incident:
A solved example for above incident already exists in the database. See following example:
The above example should be picked up but it is not because the
name
andtype
field in the variables is different in both of these incidents. The fix for both of these incidents essentially is the same.The text was updated successfully, but these errors were encountered: