Skip to content

Commit f2b3bc8

Browse files
committed
osd_type: use SERVER_TENTACLE for fixing the pg_pool_t dencoding
The Nitzan's fix has made into Squid, so just replace `SERVET_SQUID` with `SERVER_TENTACLE`. The commit was never exposed, so it should be perfectly fine to just bump up. Doing this in separate commit to keep the boundaries between changes from 2 authors. Fixes: https://tracker.ceph.com/issues/59291 Signed-off-by: Radoslaw Zarzynski <[email protected]>
1 parent a4fb7b1 commit f2b3bc8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/osd/osd_types.cc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1955,7 +1955,7 @@ void pg_pool_t::encode(ceph::buffer::list& bl, uint64_t features) const
19551955
uint8_t v = 31;
19561956
// NOTE: any new encoding dependencies must be reflected by
19571957
// SIGNIFICANT_FEATURES
1958-
if (!HAVE_FEATURE(features, SERVER_SQUID)) {
1958+
if (!HAVE_FEATURE(features, SERVER_TENTACLE)) {
19591959
if (!(features & CEPH_FEATURE_NEW_OSDOP_ENCODING)) {
19601960
// this was the first post-hammer thing we added; if it's missing, encode
19611961
// like hammer.

0 commit comments

Comments
 (0)