Skip to content

Commit f4f03be

Browse files
author
Sokolov Yura
committed
cfs: do not elog(ERROR) in cfs_gc_file.
1 parent 6178f1c commit f4f03be

File tree

1 file changed

+1
-1
lines changed
  • src/backend/storage/file

1 file changed

+1
-1
lines changed

src/backend/storage/file/cfs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -916,7 +916,7 @@ static bool cfs_gc_file(char* map_path, GC_CALL_KIND background)
916916
/* there could not be concurrent GC for this file here, so recover */
917917
if (!cfs_recover(map, md, file_path, map_path, file_bck_path, map_bck_path))
918918
{
919-
elog(ERROR, "CFS found that file %s is completely destroyed", file_path);
919+
elog(WARNING, "CFS found that file %s is completely destroyed", file_path);
920920
goto FinUnmap;
921921
}
922922
}

0 commit comments

Comments
 (0)