Skip to content

Commit

Permalink
fix dict path
Browse files Browse the repository at this point in the history
  • Loading branch information
qidaye committed Dec 23, 2024
1 parent 2536161 commit 2323b44
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,9 @@ class IndexCompactionTest : public ::testing::Test {
_data_dir = std::make_unique<DataDir>(*_engine_ref, _absolute_dir);
static_cast<void>(_data_dir->update_capacity());
ExecEnv::GetInstance()->set_storage_engine(std::move(engine));
config::inverted_index_dict_path = std::getenv("DORIS_HOME") + "/be/src/clucene/src/contribs-lib/CLucene/analysis/jieba/dict";
config::inverted_index_dict_path =
std::getenv("DORIS_HOME") +
"/be/src/clucene/src/contribs-lib/CLucene/analysis/jieba/dict";
}
void TearDown() override {
EXPECT_TRUE(io::global_local_filesystem()->delete_directory(_tablet->tablet_path()).ok());
Expand Down

0 comments on commit 2323b44

Please sign in to comment.