summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@yahoo-inc.com>2016-11-04 09:46:07 +0000
committerTor Egge <Tor.Egge@yahoo-inc.com>2016-11-04 09:46:07 +0000
commitd87eab6cb6fc5828114db4e16e9d94731e782f26 (patch)
tree5eb2d76f0ef85ba74dc160bc0e4f1aff2d9e7e43 /searchcore
parent0a44f4a37fccc3b3d4c8c11f5448a3c8bd4f5eb1 (diff)
Pass on hwinfo from old attribute manager to new attribute manager.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/attribute/attributemanager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/attribute/attributemanager.cpp b/searchcore/src/vespa/searchcore/proton/attribute/attributemanager.cpp
index 17c51f6ba58..f53e6995410 100644
--- a/searchcore/src/vespa/searchcore/proton/attribute/attributemanager.cpp
+++ b/searchcore/src/vespa/searchcore/proton/attribute/attributemanager.cpp
@@ -235,7 +235,8 @@ AttributeManager::AttributeManager(const AttributeManager &currMgr,
_fileHeaderContext(currMgr._fileHeaderContext),
_factory(currMgr._factory),
_interlock(currMgr._interlock),
- _attributeFieldWriter(currMgr._attributeFieldWriter)
+ _attributeFieldWriter(currMgr._attributeFieldWriter),
+ _hwInfo(currMgr._hwInfo)
{
Spec::AttributeList toBeAdded;
transferExistingAttributes(currMgr, newSpec, toBeAdded);