Skip to content
This repository has been archived by the owner on May 22, 2018. It is now read-only.

Commit

Permalink
cleanup cycle needs to be persisted to allMap, since that's where it'…
Browse files Browse the repository at this point in the history
…s read from in other places. this stuff needs some cleanup...

changing logging message to reflect reality (gets displayed on a grid status page)
  • Loading branch information
lukeis committed Feb 19, 2016
1 parent 047487f commit 12f97a2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -398,6 +398,7 @@ public void setPort(int port) {

public void setCleanupCycle(int cleanupCycle) {
this.cleanupCycle = cleanupCycle;
put(RegistrationRequest.CLEAN_UP_CYCLE, cleanupCycle);
}

public void setTimeout(int timeout) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,12 +88,12 @@ public void beforeRelease(TestSession session) {


public void afterCommand(TestSession session, HttpServletRequest request, HttpServletResponse response) {
session.put("lastCommand", request.getMethod() + " - " + request.getPathInfo() + " executing ...");
session.put("lastCommand", request.getMethod() + " - " + request.getPathInfo() + " executed.");
}


public void beforeCommand(TestSession session, HttpServletRequest request, HttpServletResponse response) {
session.put("lastCommand", request.getMethod() + " - " + request.getPathInfo() + " executed.");
session.put("lastCommand", request.getMethod() + " - " + request.getPathInfo() + " executing ...");
}

private final HtmlRenderer renderer = new WebProxyHtmlRenderer(this);
Expand Down

0 comments on commit 12f97a2

Please sign in to comment.