From 6915a39d4b7a23a544cccd8a81bbd0bc3bb38fba Mon Sep 17 00:00:00 2001 From: GVSharma Date: Sun, 15 Sep 2019 21:47:20 +0530 Subject: [PATCH] added default port number for Rabbit MQ updated default port for RabbitMQ port --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 999990b..162c8a7 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Before running the application, ensure that you have a MongoDB instance running RabbitMQ is used as message broker for communication between the services. When a product is deleted, a message is produced by the product service. This message contains details about the product that has been deleted. The shopping list service consumes the message and removes the deleted product from the shopping lists. -Before running the application, ensure that a RabbitMQ instance is running on `localhost` port `5672` (default port). +Before running the application, ensure that a RabbitMQ instance is running on `localhost` port `15672` (default port). ## Building and running this application @@ -202,4 +202,4 @@ curl -X DELETE \ Alternatively to [curl][], you can use [Postman][] to target the REST API. Check the Postman [collection](misc/microservices-springboot.postman_collection.json) and the [environment variables](misc/microservices-springboot.postman_environment.json) as well. [Postman]: https://www.getpostman.com/ -[curl]: https://curl.haxx.se/ \ No newline at end of file +[curl]: https://curl.haxx.se/