summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--config-model/CMakeLists.txt4
-rw-r--r--configserver/src/main/java/com/yahoo/vespa/config/server/http/LogRetriever.java4
-rw-r--r--searchlib/src/tests/queryeval/blueprint/intermediate_blueprints_test.cpp31
3 files changed, 24 insertions, 15 deletions
diff --git a/config-model/CMakeLists.txt b/config-model/CMakeLists.txt
index ffa896d8524..834830587d1 100644
--- a/config-model/CMakeLists.txt
+++ b/config-model/CMakeLists.txt
@@ -3,7 +3,7 @@ install_jar(config-model-jar-with-dependencies.jar)
vespa_install_script(src/main/perl/vespa-deploy bin)
-install(DIRECTORY src/main/resources/schema DESTINATION share/vespa PATTERN ".gitignore" EXCLUDE)
-install(DIRECTORY src/main/resources/schema DESTINATION share/vespa/schema/version/8.x PATTERN ".gitignore" EXCLUDE)
+install(DIRECTORY src/main/resources/schema DESTINATION share/vespa PATTERN ".gitignore" EXCLUDE PATTERN "version" EXCLUDE)
+install(DIRECTORY src/main/resources/schema DESTINATION share/vespa/schema/version/8.x PATTERN ".gitignore" EXCLUDE PATTERN "version" EXCLUDE)
# TODO: Remove when Vespa > 8 and no apps are left on 7 in hosted Vespa
install(DIRECTORY src/main/resources/schema/version/7.x/ DESTINATION share/vespa/schema/version/7.x/schema PATTERN ".gitignore" EXCLUDE)
diff --git a/configserver/src/main/java/com/yahoo/vespa/config/server/http/LogRetriever.java b/configserver/src/main/java/com/yahoo/vespa/config/server/http/LogRetriever.java
index 7d8aacba0d5..3be99ab8393 100644
--- a/configserver/src/main/java/com/yahoo/vespa/config/server/http/LogRetriever.java
+++ b/configserver/src/main/java/com/yahoo/vespa/config/server/http/LogRetriever.java
@@ -25,9 +25,9 @@ public class LogRetriever {
try {
return new ProxyResponse(httpClient.execute(get));
} catch (IOException e) {
- // It takes some time before nodes are up after first-time deployment, return empty log for up to 1 minute
+ // It takes some time before nodes are up after first-time deployment, return empty log for up to 2 minutes
// if getting logs fail
- if (deployTime.isPresent() && Instant.now().isBefore(deployTime.get().plus(Duration.ofMinutes(1))))
+ if (deployTime.isPresent() && Instant.now().isBefore(deployTime.get().plus(Duration.ofMinutes(2))))
return new HttpResponse(200) {
@Override
public void render(OutputStream outputStream) throws IOException {
diff --git a/searchlib/src/tests/queryeval/blueprint/intermediate_blueprints_test.cpp b/searchlib/src/tests/queryeval/blueprint/intermediate_blueprints_test.cpp
index d478adafa57..87de62dbfad 100644
--- a/searchlib/src/tests/queryeval/blueprint/intermediate_blueprints_test.cpp
+++ b/searchlib/src/tests/queryeval/blueprint/intermediate_blueprints_test.cpp
@@ -2,6 +2,7 @@
#include "mysearch.h"
#include <vespa/vespalib/testkit/testapp.h>
+#include <vespa/searchlib/queryeval/isourceselector.h>
#include <vespa/searchlib/queryeval/blueprint.h>
#include <vespa/searchlib/queryeval/intermediate_blueprints.h>
#include <vespa/searchlib/queryeval/leaf_blueprints.h>
@@ -23,6 +24,14 @@ using namespace search::fef;
using namespace search::query;
using search::BitVector;
+struct InvalidSelector : ISourceSelector {
+ InvalidSelector() : ISourceSelector(Source()) {}
+ void setSource(uint32_t, Source) override { abort(); }
+ uint32_t getDocIdLimit() const override { abort(); }
+ void compactLidSpace(uint32_t) override { abort(); }
+ std::unique_ptr<sourceselector::Iterator> createIterator() const override { abort(); }
+};
+
struct WeightOrder {
bool operator()(const wand::Term &t1, const wand::Term &t2) const {
return (t1.weight < t2.weight);
@@ -412,7 +421,7 @@ TEST("test Rank Blueprint") {
}
TEST("test SourceBlender Blueprint") {
- ISourceSelector *selector = nullptr; // not needed here
+ auto selector = std::make_unique<InvalidSelector>(); // not needed here
SourceBlenderBlueprint b(*selector);
{ // combine
std::vector<Blueprint::HitEstimate> est;
@@ -485,8 +494,8 @@ TEST("test SourceBlender Blueprint") {
}
TEST("test SourceBlender below AND optimization") {
- ISourceSelector *selector_1 = 0; // the one
- ISourceSelector *selector_2 = reinterpret_cast<ISourceSelector*>(100); // not the one
+ auto selector_1 = std::make_unique<InvalidSelector>(); // the one
+ auto selector_2 = std::make_unique<InvalidSelector>(); // not the one
//-------------------------------------------------------------------------
AndBlueprint *top = new AndBlueprint();
Blueprint::UP top_bp(top);
@@ -567,8 +576,8 @@ TEST("test SourceBlender below AND optimization") {
}
TEST("test SourceBlender below OR optimization") {
- ISourceSelector *selector_1 = 0; // the one
- ISourceSelector *selector_2 = reinterpret_cast<ISourceSelector*>(100); // not the one
+ auto selector_1 = std::make_unique<InvalidSelector>(); // the one
+ auto selector_2 = std::make_unique<InvalidSelector>(); // not the one
//-------------------------------------------------------------------------
OrBlueprint *top = new OrBlueprint();
Blueprint::UP top_up(top);
@@ -649,8 +658,8 @@ TEST("test SourceBlender below OR optimization") {
}
TEST("test SourceBlender below AND_NOT optimization") {
- ISourceSelector *selector_1 = 0; // the one
- ISourceSelector *selector_2 = reinterpret_cast<ISourceSelector*>(100); // not the one
+ auto selector_1 = std::make_unique<InvalidSelector>(); // the one
+ auto selector_2 = std::make_unique<InvalidSelector>(); // not the one
//-------------------------------------------------------------------------
AndNotBlueprint *top = new AndNotBlueprint();
Blueprint::UP top_up(top);
@@ -741,8 +750,8 @@ TEST("test SourceBlender below AND_NOT optimization") {
}
TEST("test SourceBlender below RANK optimization") {
- ISourceSelector *selector_1 = 0; // the one
- ISourceSelector *selector_2 = reinterpret_cast<ISourceSelector*>(100); // not the one
+ auto selector_1 = std::make_unique<InvalidSelector>(); // the one
+ auto selector_2 = std::make_unique<InvalidSelector>(); // not the one
//-------------------------------------------------------------------------
RankBlueprint *top = new RankBlueprint();
Blueprint::UP top_up(top);
@@ -876,7 +885,7 @@ TEST("test empty root node optimization and safeness") {
}
TEST("and with one empty child is optimized away") {
- ISourceSelector *selector = 0;
+ auto selector = std::make_unique<InvalidSelector>();
Blueprint::UP top(ap((new SourceBlenderBlueprint(*selector))->
addChild(ap(MyLeafSpec(10).create())).
addChild(ap((new AndBlueprint())->
@@ -891,7 +900,7 @@ TEST("and with one empty child is optimized away") {
}
TEST("test single child optimization") {
- ISourceSelector *selector = 0;
+ auto selector = std::make_unique<InvalidSelector>();
//-------------------------------------------------------------------------
Blueprint::UP top_up(
ap((new AndNotBlueprint())->