Configuration file syntax follows the OpenSSL standard (see https://github.com/openssl/openssl/blob/master/doc/man5/config.pod).
If the default provider is required when also using custom providers,
it must be explicitly loaded in the configuration file or code (see https://github.com/openssl/openssl/blob/master/README-PROVIDERS.md).
+* RGW: Fixed bucket notification events so the 'x_amz_request_id' in NotificationEvent now matches the 'x_amz_request_id' returned by the corresponding S3 operation.
+
* DASHBOARD: Removed the older landing page which was deprecated in Quincy.
Admins can no longer enable the older, deprecated landing page layout by
std::string user;
std::string password;
parse_url_authority(e.push_endpoint, host, user, password);
- return out << "notification id: '" << e.event.configurationId
- << "', topic: '" << e.arn_topic
- << "', endpoint: '" << host
- << "', endpoint_user: '" << user
- << "', bucket_owner: '" << e.event.bucket_ownerIdentity
- << "', bucket: '" << e.event.bucket_name
- << "', object: '" << e.event.object_key
- << "', event type: '" << e.event.eventName << "'";
+ return out << "notification id=" << e.event.configurationId
+ << " topic=" << e.arn_topic << " endpoint=" << host
+ << " endpoint_user=" << user
+ << " bucket_owner=" << e.event.bucket_ownerIdentity
+ << " bucket=" << e.event.bucket_name
+ << " object=" << e.event.object_key
+ << " object_versionId=" << e.event.object_versionId
+ << " x_amz_request_id=" << e.event.x_amz_request_id
+ << " event type=" << e.event.eventName;
}
struct persistency_tracker {
ret = push_endpoint->send(this, event_entry.event, yield);
if (ret < 0) {
ldpp_dout(this, 5) << "WARNING: push entry marker: " << entry.marker
- << " failed. error: " << ret
+ << " failed."
<< " (will retry) for event with " << event_entry
- << dendl;
+ << " ret=" << ret << dendl;
return EntryProcessingResult::Failure;
}
ldpp_dout(this, 5) << "INFO: push entry marker: " << entry.marker
- << " ok for event with " << event_entry << dendl;
+ << " ok for event with " << event_entry << " ret=" << ret
+ << dendl;
if (perfcounter)
perfcounter->inc(l_rgw_pubsub_push_ok);
return EntryProcessingResult::Successful;
metadata_fetched_from_attributes(false),
user_id(to_string(_s->owner.id)),
user_tenant(_s->user->get_id().tenant),
- req_id(_s->req_id),
+ req_id(_s->trans_id),
yield(y)
{
filter_amz_meta(x_meta_map, _s->info.x_meta_map);