mirror of
https://git.freebsd.org/ports.git
synced 2025-06-24 22:20:35 -04:00
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
13 lines
340 B
Diff
13 lines
340 B
Diff
diff --git a/src/msg/async/frames_v2.cc b/src/msg/async/frames_v2.cc
|
|
index f047eb1846..ecc6c025eb 100644
|
|
--- src/msg/async/frames_v2.cc
|
|
+++ src/msg/async/frames_v2.cc
|
|
@@ -18,7 +18,7 @@
|
|
|
|
#undef FMT_HEADER_ONLY
|
|
#define FMT_HEADER_ONLY 1
|
|
-#include "seastar/fmt/include/fmt/format.h"
|
|
+#include "fmt/format.h"
|
|
|
|
namespace ceph::msgr::v2 {
|
|
|