aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHenning Baldersheim <balder@yahoo-inc.com>2017-08-10 18:47:03 +0200
committerHenning Baldersheim <balder@yahoo-inc.com>2017-08-10 18:47:03 +0200
commit3fda0a6c66d55f32b2359e1cc2e4212796eb01f1 (patch)
treefbcf9c5e65e12c49a2c48993b62b2d435d4bf4b0
parent56a8d3e424f8d1ddb09045fd5686a1c608d6bd42 (diff)
Also change feedview when documenttype config changes.
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/reconfig_params.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/reconfig_params.cpp b/searchcore/src/vespa/searchcore/proton/server/reconfig_params.cpp
index 41a4c4fd3c0..1bb5ed23455 100644
--- a/searchcore/src/vespa/searchcore/proton/server/reconfig_params.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/reconfig_params.cpp
@@ -55,15 +55,15 @@ ReconfigParams::shouldAttributeManagerChange() const
bool
ReconfigParams::shouldSummaryManagerChange() const
{
- return _res.summaryChanged || _res.summarymapChanged || _res.juniperrcChanged;
+ return _res.summaryChanged || _res.summarymapChanged || _res.juniperrcChanged
+ || _res.documentTypeRepoChanged || _res.documenttypesChanged
}
bool
ReconfigParams::shouldSubDbsChange() const
{
- return shouldMatchersChange()
- || shouldAttributeManagerChange()
- || shouldSummaryManagerChange();
+ return shouldMatchersChange() || shouldAttributeManagerChange() || shouldSummaryManagerChange()
+ || _res.documentTypeRepoChanged || _res.documenttypesChanged;
}
bool