Skip to content

Commit

Permalink
Merge pull request #32337 from vespa-engine/arnej/ignore-compilation-…
Browse files Browse the repository at this point in the history
…disabled

no warning when double-only ranking expression must be interpreted
  • Loading branch information
arnej27959 authored Sep 4, 2024
2 parents 37cfe3f + 779ab24 commit b630918
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,7 @@ RankingExpressionBlueprint::setup(const fef::IIndexEnvironment &env,
auto compile_issues = CompiledFunction::detect_issues(*rank_function);
auto interpret_issues = InterpretedFunction::detect_issues(*rank_function);
if (do_compile && compile_issues && !interpret_issues) {
LOG(warning, "ranking expression compilation disabled: %s\n%s",
LOG(debug, "ranking expression compilation disabled: %s\n%s",
script.c_str(), list_issues(compile_issues.list).c_str());
do_compile = false;
}
Expand Down

0 comments on commit b630918

Please sign in to comment.