Skip to content

Commit aad993f

Browse files
committed
crimson/osd/replicated_backend: fix log _submit_transaction
``` ERROR 2024-04-16 07:44:02,484 [shard 1:main] osd - /home/jenkins-build/build/workspace/ceph-dev-new-build/ARCH/x86_64/AVAILABLE_ARCH/x86_64/AVAILABLE_DIST/centos9/DIST/centos9/MACHINE_SIZE/gigantic/release/19.0.0-3109-g30b0aa00/rpm/el9/BUILD/ceph-19.0.0-3109-g30b0aa00/src/crimson/osd/replicated_backend.cc:47 @virtual PGBackend::rep_op_fut_t ReplicatedBackend::_submit_transaction(std::set<pg_shard_t>&&, const hobject_t&, ceph::os::Transaction&&, osd_op_params_t&&, epoch_t, epoch_t, std::vector<pg_log_entry_t>&&): failed to log message: fmt='{} {}: object {}, {}': fmt::v9::format_error (argument not found) ``` Signed-off-by: Matan Breizman <[email protected]>
1 parent 006124a commit aad993f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/crimson/osd/replicated_backend.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ ReplicatedBackend::_submit_transaction(std::set<pg_shard_t>&& pg_shards,
4444
std::vector<pg_log_entry_t>&& log_entries)
4545
{
4646
LOG_PREFIX(ReplicatedBackend::_submit_transaction);
47-
DEBUGDPP("object {}, {}", dpp, hoid);
47+
DEBUGDPP("object {}", dpp, hoid);
4848

4949
const ceph_tid_t tid = shard_services.get_tid();
5050
auto pending_txn =

0 commit comments

Comments
 (0)