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
Line 52 of user service users_bookings = requests.get("http://127.0.0.1:5003/bookings/{}".format(username))
user service here makes a GET request (same as external user making one) to booking service. This is a crucial learning as part of Microservices design. Services talking to each other is just a fancy way of saying one service making a REST request (in this case) or RPC request to another. It is this channel of communication which makes this design modular and independent. It was an ah-ha moment for me too when I realized this looking at this line. So I understand where you might be coming from. :)
No description provided.
The text was updated successfully, but these errors were encountered: