From: Sage Weil Date: Tue, 30 Jan 2018 14:56:46 +0000 (-0600) Subject: osd/osd_types: include epoch_sent in pg_query_t operator<< X-Git-Tag: v13.1.0~390^2~91 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=68d89616cbcc66bc86863a6221992e5a95da52ee;p=ceph.git osd/osd_types: include epoch_sent in pg_query_t operator<< Signed-off-by: Sage Weil --- diff --git a/src/osd/osd_types.h b/src/osd/osd_types.h index 74b84c0191cd..49304b6600a2 100644 --- a/src/osd/osd_types.h +++ b/src/osd/osd_types.h @@ -3129,6 +3129,7 @@ inline ostream& operator<<(ostream& out, const pg_query_t& q) { out << "query(" << q.get_type_name() << " " << q.since; if (q.type == pg_query_t::LOG) out << " " << q.history; + out << " epoch_sent " << q.epoch_sent; out << ")"; return out; }