Skip to content

Commit

Permalink
checking whether requests are still open when consdered for scheduling
Browse files Browse the repository at this point in the history
  • Loading branch information
abmargb committed May 20, 2015
1 parent 88cb976 commit ebf6c14
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1199,6 +1199,10 @@ protected void checkAndSubmitOpenRequests() {

List<Request> openRequests = requests.getRequestsIn(RequestState.OPEN);
for (Request request : openRequests) {
if (!request.getState().equals(RequestState.OPEN)) {
LOGGER.debug("The request " + request.getId() + " is no longer open.");
continue;
}
if (isRequestForwardedtoRemoteMember(request.getId())) {
LOGGER.debug("The request " + request.getId()
+ " was forwarded to remote member and is not fulfilled yet.");
Expand Down

0 comments on commit ebf6c14

Please sign in to comment.