return;
}
- // Don't start host of already started
+ // Don't start host if already started
if (host.getState().isAvailable()) {
writer.println(smClient.getString(
"hostManagerServlet.alreadyStarted", name));
/**
- * Start the host with the specified name.
+ * Stop the host with the specified name.
*
* @param writer Writer to render to
* @param name Host name
return;
}
- // Prevent starting our own host
+ // Prevent stopping our own host
if (host == installedHost) {
writer.println(smClient.getString(
"hostManagerServlet.cannotStopOwnHost", name));
return;
}
- // Don't stop host of already stopped
+ // Don't stop host if already stopped
if (!host.getState().isAvailable()) {
writer.println(smClient.getString(
"hostManagerServlet.alreadyStopped", name));
CrawlerSessionManagerValve was used without setting crawlerUserAgents.
(markt)
</fix>
+ <fix>
+ <bug>51466</bug>: Correct comment typos in HostManagerServlet. Patch
+ provided by Felix Schumacher. (markt)
+ </fix>
</changelog>
</subsection>
<subsection name="Other">