We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6b7196 commit a6f0a29Copy full SHA for a6f0a29
docker/dev/php/Dockerfile
@@ -31,7 +31,7 @@ RUN curl -sS https://getcomposer.org/installer | php -- --install-dir=/usr/bin -
31
32
# PHP: Install php extensions
33
RUN pecl channel-update pecl.php.net && \
34
- pecl install rdkafka-6.0.0 pcov && \
+ pecl install rdkafka-6.0.1 pcov && \
35
docker-php-ext-install pcntl && \
36
php-ext-enable rdkafka pcntl pcov
37
src/Consumer/AbstractKafkaConsumer.php
@@ -230,7 +230,7 @@ protected function getConsumerMessage(RdKafkaMessage $message): KafkaConsumerMes
230
(int) $message->timestamp,
231
$message->key,
232
$message->payload,
233
- (array) ($message->headers ?? null)
+ (array) $message->headers
234
);
235
}
236
0 commit comments