0
0
Fork 0
mirror of https://github.com/matrix-construct/construct synced 2024-09-30 12:48:54 +02:00

ircd::db: Minor cleanup.

This commit is contained in:
Jason Volk 2018-08-19 18:35:42 -07:00
parent 10434c96c5
commit d4b98e04e9

View file

@ -5024,12 +5024,16 @@ ircd::db::sort(column &column,
{ {
database::column &c(column); database::column &c(column);
database &d(*c.d); database &d(*c.d);
rocksdb::FlushOptions opts; rocksdb::FlushOptions opts;
opts.wait = blocking; opts.wait = blocking;
log.debug("'%s':'%s' @%lu FLUSH (sort)", log::debug
name(d), {
name(c), log, "'%s':'%s' @%lu FLUSH (sort)",
sequence(d)); name(d),
name(c),
sequence(d)
};
throw_on_error throw_on_error
{ {