Skip to content
Snippets Groups Projects
Commit 968b57a1 authored by Alan Braz's avatar Alan Braz
Browse files

update core to 0.0.13

parent 5947fac2
No related branches found
No related tags found
1 merge request!6Trusted ibm
......@@ -44,7 +44,7 @@
<dependency>
<groupId>org.opengroup.osdu</groupId>
<artifactId>os-core-lib-ibm</artifactId>
<version>0.0.12-SNAPSHOT</version>
<version>0.0.13-SNAPSHOT</version>
</dependency>
<dependency>
......
......@@ -43,7 +43,7 @@ import com.google.gson.JsonElement;
public class PublisherImpl implements IPublisher {
@Inject
IMessageFactory rabbitMQ;
IMessageFactory mq;
@Inject
private JaxRsDpsLog logger;
......@@ -66,7 +66,7 @@ public class PublisherImpl implements IPublisher {
try {
logger.info("Indexer publishes message " + headers.getCorrelationId());
rabbitMQ.sendMessage("indexer", message.toString());
mq.sendMessage(IMessageFactory.INDEXER_QUEUE_NAME, message.toString());
}
catch (Exception e) {
logger.error(e.getMessage(), e);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment