From: Sage Weil Date: Fri, 12 Jul 2013 18:34:22 +0000 (-0700) Subject: mon: fix copy/paste error X-Git-Tag: v0.67-rc1~59^2~19 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=2dcab51f58131cee4c8ae113d6b86cfa4204837f;p=ceph.git mon: fix copy/paste error From rebase/squash into 96c48835d19923b467ced3032948af6c2b7959f2. Signed-off-by: Sage Weil --- diff --git a/src/mon/Monitor.cc b/src/mon/Monitor.cc index e11fb8103821..a2699757a320 100644 --- a/src/mon/Monitor.cc +++ b/src/mon/Monitor.cc @@ -842,7 +842,7 @@ void Monitor::sync_start(entity_inst_t &other, bool full) sync_last_committed_floor = MAX(sync_last_committed_floor, paxos->get_version()); dout(10) << __func__ << " marking sync in progress, storing sync_last_committed_floor " << sync_last_committed_floor << dendl; - t->put("mon_sync", "last_committed_floor", sync_last_committed_floor); + t.put("mon_sync", "last_committed_floor", sync_last_committed_floor); store->apply_transaction(t);