diff --git a/db/view/view_update_generator.cc b/db/view/view_update_generator.cc index 0294a2aab4..b27e2b2ceb 100644 --- a/db/view/view_update_generator.cc +++ b/db/view/view_update_generator.cc @@ -176,11 +176,10 @@ void view_update_generator::discover_staging_sstables() { const auto& sstables = t->get_staging_sstables(); _sstables_with_tables[t].reserve(_sstables_with_tables[t].size() + sstables.size()); for (auto& sst : sstables | boost::adaptors::map_values) { - // FIXME: indentation - _sstables_with_tables[t].push_back(sst); - // we're at early stage here, no need to kick _pending_sstables (the - // bulding fiber is not running), neither we can wait on the semaphore - _registration_sem.consume(1); + _sstables_with_tables[t].push_back(sst); + // we're at early stage here, no need to kick _pending_sstables (the + // bulding fiber is not running), neither we can wait on the semaphore + _registration_sem.consume(1); } } }