summaryrefslogtreecommitdiffstats
path: root/searchcore
diff options
context:
space:
mode:
authorTor Egge <Tor.Egge@oath.com>2018-01-30 15:34:01 +0000
committerTor Egge <Tor.Egge@oath.com>2018-01-31 10:31:29 +0000
commit2a949b1cf65bb3f506cef14ec7682cb61ff56be1 (patch)
tree7ce84a1373e80e86587b2bda5ae2fab5f7222c2e /searchcore
parentc2793807b7ba3214100f27734140e3f4ad3a304c (diff)
Reduce use of document::BucketSpace::placeHolder().
Diffstat (limited to 'searchcore')
-rw-r--r--searchcore/src/vespa/searchcore/proton/server/proton_configurer.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/searchcore/src/vespa/searchcore/proton/server/proton_configurer.cpp b/searchcore/src/vespa/searchcore/proton/server/proton_configurer.cpp
index b8e283d9095..828cc909ac6 100644
--- a/searchcore/src/vespa/searchcore/proton/server/proton_configurer.cpp
+++ b/searchcore/src/vespa/searchcore/proton/server/proton_configurer.cpp
@@ -34,7 +34,7 @@ getBucketSpace(const BootstrapConfig &bootstrapConfig, const DocTypeName &name)
ost << "Could not map from document type name '" << name.getName() << "' to bucket space name";
throw vespalib::IllegalStateException(ost.str(), VESPA_STRLOC);
}
- return document::BucketSpace::placeHolder();
+ return storage::spi::FixedBucketSpaces::default_space();
}
}