Say I have service http://myservice.dev:8080/resource/get/id which calls another service http://otherservice.dev:8080/resource/get/name. If the second service does not respond because it is down, what is the proper response the calling service should return to the client? Assume that it is critical for the request to call the second service.
I was thinking 504 gateway timeout but it sounds like this is for the upstream gateway...