Skip to content

Commit

Permalink
[Fix](inverted index) fix wrong fs in inverted_index_file_writer (apa…
Browse files Browse the repository at this point in the history
  • Loading branch information
airborne12 committed May 15, 2024
1 parent adc38f8 commit 83f4c02
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ Result<DorisFSDirectory*> InvertedIndexFileWriter::open(const TabletIndex* index
(_index_file_dir / _segment_file_name).native(), index_id, index_suffix);

bool exists = false;
auto st = _fs->exists(lfs_index_path.c_str(), &exists);
auto st = _lfs->exists(lfs_index_path.c_str(), &exists);
if (!st.ok()) {
LOG(ERROR) << "index_path:" << lfs_index_path << " exists error:" << st;
return ResultError(st);
Expand Down

0 comments on commit 83f4c02

Please sign in to comment.