summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@oath.com>2018-08-17 12:55:35 +0000
committerTor Egge <Tor.Egge@oath.com>2018-08-17 12:55:35 +0000
commitcd32ad2fe324a345cb9d263b0ee16d22de449db2 (patch)
tree852128ad1ca9b981dc6ac2ecdf68703740043844 /searchcore
parent748725984486ddc14eeeb54c71c3017e445ef5c2 (diff)
Pass file name to attribute vector save method.
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/attribute/flushableattribute.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/attribute/flushableattribute.cpp b/searchcore/src/vespa/searchcore/proton/attribute/flushableattribute.cpp
index 6c2484eccdb..a33612a46e4 100644
--- a/searchcore/src/vespa/searchcore/proton/attribute/flushableattribute.cpp
+++ b/searchcore/src/vespa/searchcore/proton/attribute/flushableattribute.cpp
@@ -75,7 +75,7 @@ FlushableAttribute::Flusher::Flusher(FlushableAttribute & fattr, SerialNum syncT
_saver = attr.initSave(_flushFile);
if (!_saver) {
// New style background save not available, use old style save.
- attr.save(_saveTarget);
+ attr.save(_saveTarget, _flushFile);
}
}