mirror of
https://github.com/scylladb/scylladb.git
synced 2026-05-12 19:02:12 +00:00
The sstable_compaction_test::simple_backlog_controller_test makes sstables with empty dir argument. Eventually this means that sstables happen in / directory [1], which's not nice. As a side effect this also makes sstable::storage::prefix() returns empty string which, in turn, confuses the code that tries to analyze the prefix contents (refs: #13090) [1] See, e.g. logs from https://jenkins.scylladb.com/job/releng/job/Scylla-CI/4757/consoleText ``` INFO 2023-03-06 21:23:04,536 [shard 0] compaction - [Compact ks.cf 51489760-bc54-11ed-a08c-7d3f1d77e2e4] Compacting [/la-1-big-Data.db:level=0:origin=] ``` Signed-off-by: Pavel Emelyanov <xemul@scylladb.com> Closes #13094