Skip to content

Commit

Permalink
BUG: Lucene,Net.Cli.BenchmarkFindQualityQueriesCommand: fixed mapping…
Browse files Browse the repository at this point in the history
… to QualityQueriesFinder.Main(args)
  • Loading branch information
rclabo committed Sep 25, 2024
1 parent 54ea777 commit e34e5c9
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
using Lucene.Net.Benchmarks.Quality.Trec;
using Lucene.Net.Benchmarks.Quality.Utils;

namespace Lucene.Net.Cli
{
Expand All @@ -25,7 +26,7 @@ public class Configuration : ConfigurationBase
{
public Configuration(CommandLineOptions options)
{
this.Main = (args) => QueryDriver.Main(args);
this.Main = (args) => QualityQueriesFinder.Main(args);

this.Name = "find-quality-queries";
this.Description = FromResource("Description");
Expand Down

0 comments on commit e34e5c9

Please sign in to comment.