From 5057f27bbdff3be4df0e60df2753f190b554bd48 Mon Sep 17 00:00:00 2001 From: bhoerdzn Date: Wed, 9 Oct 2013 11:41:15 +0200 Subject: [PATCH] fix typo in parsing "cachePolicy" parameter --- htroot/CrawlStartExpert_p.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/htroot/CrawlStartExpert_p.java b/htroot/CrawlStartExpert_p.java index 84259ed56..687e92e63 100644 --- a/htroot/CrawlStartExpert_p.java +++ b/htroot/CrawlStartExpert_p.java @@ -466,7 +466,7 @@ public class CrawlStartExpert_p { // Policy for usage of Web Cache if (post != null && post.containsKey("cachePolicy")) { - final String cachePolicy = post.get("chachePolicy", ""); + final String cachePolicy = post.get("cachePolicy", ""); if (cachePolicy.equalsIgnoreCase("nocache")) { prop.put("cachePolicy_nocache", "1"); } else if (cachePolicy.equalsIgnoreCase("ifexist")) {