From: Yehuda Sadeh Date: Sat, 28 Jul 2018 00:30:24 +0000 (-0700) Subject: rgw: pubsub: fix encoding of json config X-Git-Tag: v14.1.0~616^2~24 X-Git-Url: http://git.apps.os.sepia.ceph.com/?a=commitdiff_plain;h=fa13c31155f499671c408c437fa0f19bb9c51a57;p=ceph-ci.git rgw: pubsub: fix encoding of json config Signed-off-by: Yehuda Sadeh --- diff --git a/src/rgw/rgw_sync_module_pubsub.cc b/src/rgw/rgw_sync_module_pubsub.cc index 3a0de9f570d..b162fbaa2be 100644 --- a/src/rgw/rgw_sync_module_pubsub.cc +++ b/src/rgw/rgw_sync_module_pubsub.cc @@ -193,7 +193,7 @@ struct PSConfig { encode_json("id", id, f); encode_json("user", user, f); encode_json("data_bucket_prefix", data_bucket_prefix, f); - encode_json("data_oid_prefix", data_bucket_prefix, f); + encode_json("data_oid_prefix", data_oid_prefix, f); encode_json("events_retention_days", events_retention_days, f); encode_json("sync_instance", sync_instance, f); encode_json("max_id", max_id, f);