Skip to content

Commit

Permalink
conf4
Browse files Browse the repository at this point in the history
  • Loading branch information
zhangstar333 committed Mar 6, 2024
1 parent 96df3f0 commit 59aa367
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion be/src/io/fs/hdfs_file_system.h
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ class HdfsFileSystemHandle {
_invalid(false) {}

~HdfsFileSystemHandle() {
DCHECK(_ref_cnt == 0);
DCHECK(_ref_cnt == 0) << _ref_cnt;
if (hdfs_fs != nullptr) {
// DO NOT call hdfsDisconnect(), or we will meet "Filesystem closed"
// even if we create a new one
Expand Down
2 changes: 1 addition & 1 deletion regression-test/pipeline/p0/conf/regression-conf.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ excludeGroups = ""
// this suites will not be executed
// load_stream_fault_injection may cause bad disk

excludeSuites = "test_index_failure_injection,test_dump_image,test_profile,test_spark_load,test_refresh_mtmv,test_bitmap_filter,test_information_schema_external"
excludeSuites = "test_index_failure_injection,test_dump_image,test_profile,test_spark_load,test_refresh_mtmv,test_bitmap_filter,test_information_schema_external,test_base_insert_job"

// this directories will not be executed
excludeDirectories = "workload_manager_p1,nereids_rules_p0/subquery"
Expand Down

0 comments on commit 59aa367

Please sign in to comment.