Skip to content

Commit 27d525b

Browse files
authored
Merge pull request #2058 from joto/disable-cache-warn-create
Disable the warning that cache is disabled in append mode
2 parents 4084eb3 + 8bb8fca commit 27d525b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/command-line-parser.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -486,7 +486,7 @@ static void check_options(options_t *options)
486486
throw std::runtime_error{
487487
"RAM node cache can only be disabled in slim mode."};
488488
}
489-
if (options->flat_node_file.empty()) {
489+
if (options->flat_node_file.empty() && !options->append) {
490490
log_warn("RAM cache is disabled. This will likely slow down "
491491
"processing a lot.");
492492
}

0 commit comments

Comments
 (0)