Skip to content

Commit

Permalink
Remove assertion added by mistake during rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
Alex Seaton committed Jun 28, 2024
1 parent 14bae62 commit 05857a4
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions cpp/arcticdb/stream/append_map.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -400,10 +400,9 @@ void append_incomplete_segment(
auto seg_row_count = seg.row_count();

auto desc = stream_descriptor(stream_id, RowCountIndex{}, {});
auto tsd = pack_timeseries_descriptor(std::move(desc), seg_row_count, std::move(next_key), {});
auto tsd = pack_timeseries_descriptor(desc, seg_row_count, std::move(next_key), {});
seg.set_timeseries_descriptor(tsd);

seg.set_timeseries_descriptor(std::move(tsd));
util::check(static_cast<bool>(seg.metadata()), "Expected metadata");
auto new_key = store->write(
arcticdb::stream::KeyType::APPEND_DATA,
0,
Expand Down

0 comments on commit 05857a4

Please sign in to comment.