The CompositeTextMapPropagator.java is using the same property for consumer and producer. I assume this is a copy-paste error.
See 9b72cc4#r126084189
Version
Spring Boot 3.1.3
Solution
Use the getEffectiveConsumedTypes() instead of the getEffectiveProducedTypes() method
Line 131: List<TextMapPropagator> extractors = properties.getEffectiveConsumedTypes().stream().map(mapper::map).toList();