We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4ed5ab9 commit e139cbfCopy full SHA for e139cbf
src/data/sparse_page_source.cc
@@ -36,7 +36,7 @@ std::string MakeCachePrefix(std::string cache_prefix) {
36
cache_prefix = cache_prefix.empty() ? kDftname : cache_prefix;
37
// Use the directory if one exists
38
if (std::filesystem::is_directory(cache_prefix)) {
39
- cache_prefix = std::filesystem::path{cache_prefix} / kDftname; // NOLINT
+ cache_prefix = (std::filesystem::path{cache_prefix} / kDftname).string(); // NOLINT
40
}
41
// Avoid conflicts in distributed environments.
42
if (collective::IsDistributed()) {
0 commit comments