Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ public void init(ServletConfig config) throws ServletException {
httpRegistry = DefaultHttpRegistry.getHttpRegistry(name);
CamelServlet existing = httpRegistry.getCamelServlet(name);
if (existing != null) {
String msg = "Duplicate ServetName detected: " + name + ". Existing: " + existing + " This: " + this.toString()
String msg = "Duplicate ServletName detected: " + name + ". Existing: " + existing + " This: " + this.toString()
+ ". Its advised to use unique ServletName per Camel application.";
// always log so people can see it easier
if (isIgnoreDuplicateServletName()) {
Expand Down