From b260daa4c42954c64357f5e057c94669dc962685 Mon Sep 17 00:00:00 2001 From: Radoslaw Zarzynski Date: Fri, 5 Mar 2021 21:37:05 +0000 Subject: [PATCH] crimson/osd: unify initialization in Notify. Let's be consistent with the `Notify::timeout_timer`. Signed-off-by: Radoslaw Zarzynski --- src/crimson/osd/watch.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/crimson/osd/watch.h b/src/crimson/osd/watch.h index 0f2083651cf84..f787b34e299e0 100644 --- a/src/crimson/osd/watch.h +++ b/src/crimson/osd/watch.h @@ -115,8 +115,8 @@ class Notify { crimson::net::ConnectionRef conn; uint64_t client_gid; uint64_t user_version; - bool complete = false; - bool discarded = false; + bool complete{false}; + bool discarded{false}; seastar::timer timeout_timer{ [this] { do_timeout(); } }; -- 2.39.5