Bumping versions
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
org.gradle.daemon=false
|
||||
verifierVersion=3.0.0-SNAPSHOT
|
||||
springBootVersion=2.4.0
|
||||
springBootVersion=2.4.1
|
||||
camelVersion=3.4.3
|
||||
@@ -16,5 +16,5 @@
|
||||
wiremockVersion=2.27.0
|
||||
jsonAssertVersion=0.4.13
|
||||
verifierVersion=3.0.0-SNAPSHOT
|
||||
bootVersion=2.4.0
|
||||
bootVersion=2.4.1
|
||||
groovyVersion=2.4.17
|
||||
|
||||
@@ -16,5 +16,5 @@
|
||||
wiremockVersion=2.27.0
|
||||
jsonAssertVersion=0.4.13
|
||||
verifierVersion=3.0.0-SNAPSHOT
|
||||
bootVersion=2.4.0
|
||||
bootVersion=2.4.1
|
||||
groovyVersion=2.4.17
|
||||
|
||||
@@ -67,7 +67,7 @@ public class RabbitManager {
|
||||
// public void newBook(Book book, @Headers Map<String, String> headers) {
|
||||
public void newBook(Book book, @Header("amqp_replyTo") String replyTo) {
|
||||
LOG.info("Received new book with bookname = " + book.getName());
|
||||
// LOG.info("Headers = " + headers);
|
||||
// LOG.info("Headers = " + headers);
|
||||
this.service.sendBook(book, replyTo);
|
||||
}
|
||||
|
||||
@@ -78,7 +78,7 @@ public class RabbitManager {
|
||||
// public void newBook2(Book book, @Headers Map<String, String> headers) {
|
||||
public void newBook2(Book book, @Header("amqp_replyTo") String replyTo) {
|
||||
LOG.info("newBook2 Received new book with bookname = " + book.getName());
|
||||
// LOG.info("newBook2 Headers = " + headers);
|
||||
// LOG.info("newBook2 Headers = " + headers);
|
||||
this.service.sendBook(book, replyTo);
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user