mirror of
https://git.FreeBSD.org/ports.git
synced 2025-01-02 06:03:50 +00:00
22770906a2
Release info: We're happy to announce the availability of the eleventh release in the Nautilus series. This release brings a number of bugfixes across all major components of Ceph. We recommend that all Nautilus users upgrade to this release. Notable Changes --------------- * RGW: The `radosgw-admin` sub-commands dealing with orphans -- `radosgw-admin orphans find`, `radosgw-admin orphans finish`, `radosgw-admin orphans list-jobs` -- have been deprecated. They have not been actively maintained and they store intermediate results on the cluster, which could fill a nearly-full cluster. They have been replaced by a tool, currently considered experimental, `rgw-orphan-list`. * Now when noscrub and/or nodeep-scrub flags are set globally or per pool, scheduled scrubs of the type disabled will be aborted. All user initiated scrubs are NOT interrupted. * Fixed a ceph-osd crash in _committed_osd_maps when there is a failure to encode the first incremental map. issue#46443: https://github.com/ceph/ceph/pull/46443 For the detailed changelog please refer to the blog entry at https://ceph.io/releases/v14-2-11-nautilus-released/ PR: 248673 Submitted by: Willem Jan Withagen <wjw@digiware.nl> MFH: 2020Q3 Security: f20eb9a4-dfea-11ea-a9b8-9c5c8e84d621
14 lines
348 B
Diff
14 lines
348 B
Diff
diff --git a/src/rgw/rgw_lc.cc b/src/rgw/rgw_lc.cc
|
|
index 9dd29627db..3ea0b70fee 100644
|
|
--- src/rgw/rgw_lc.cc
|
|
+++ src/rgw/rgw_lc.cc
|
|
@@ -24,7 +24,7 @@
|
|
// prefer header-only fmt, in general
|
|
#undef FMT_HEADER_ONLY
|
|
#define FMT_HEADER_ONLY 1
|
|
-#include "seastar/fmt/include/fmt/format.h"
|
|
+#include "fmt/format.h"
|
|
|
|
#include "services/svc_sys_obj.h"
|
|
|