Has anyone succeeded in applying the modified #17 patch whilst keeping bigpipe enabled?
Seems on my install at least that the steps are
1.) Disable bigpipe
2.) Add the preprocess hook
use Drupal\Core\Render\Element\StatusMessages;
function yourtheme_preprocess_block__system_messages_block(&$variables) {
$variables['content'] = StatusMessages::renderMessages();
$variables['#cache']['max-age'] = 0;
}
If anyone else encounters this issue, i had updated the Cloudflare WAF rules to the latest version.
'/cdn-cgi/challenge-platform' was in the response for all ajax requests. Disabling the items in screenshot fixed the issue.
https://www.drupal.org/project/kafka/issues/3318381 š Bump ext-rdkafka dependency for PHP 8.1 and D10 compatibility Needs work
The PSR log dependency was fixed via this MR some time ago - https://www.drupal.org/project/kafka/issues/3318381 š Bump ext-rdkafka dependency for PHP 8.1 and D10 compatibility Needs work
Currently running on multiple 10.1.x instances with this patch applied.
If anything needs a re-roll/ new MR let me know , happy to contribute time to getting the module updated.
Much appreciated :) confirm its all working now
Forgot to mention, this error doesn't appear with DDEV:
Lifted from CoreServiceProvider:
// Debian/Ubuntu uses the (broken) OSSP extension as their UUID
// implementation. The OSSP implementation is not compatible with the
// PECL functions.
astoker88 ā created an issue.
astoker88 ā created an issue.
For anyone struggling short term here, whilst the patch in 55 isn't working (Drupal 10.1.7, PHP 8.2
MySQL 8.0) for a lot of folks and work is ongoing - i can confirm the issue is solved for me by deleting the xdebug.ini.
Just adding my two cents..
Encountered this error during a D10 upgrade, the error appeared whilst doing a drush cim
Solution for me was to navigate to the admin/people/permissions form, save, then rerun drush cim. This got me past the error assuming as the submit function cleared out those redundant/removed roles.
@louis ok Iām going to reroll the patch for 8.1 functionality , and as part of that review the default config and install too.
@louis - also please see a working config:
// Kafka config
$brokers = [
'broker-9092',
'broker1-9092',
'broker2-9092',
];
$settings['kafka'] = [
'topic' => 'topic1',
'topic2' => 'topic2',
'consumer' => [
'brokers' => $brokers,
],
'producer' => [
'brokers' => $brokers,
'conf' => [
'acks' => '1',
'metadata.broker.list' => implode( ',', $brokers),
'linger.ms' => '1000',
],
],
];
@louis i noticed you have tagged this issue under the dev branch?
https://www.drupal.org/project/kafka/issues/3318381 š Bump ext-rdkafka dependency for PHP 8.1 and D10 compatibility Needs work - I raised this some time ago, and in the end ended up forking the branch and using a custom version of the module so that we could upgrade to PHP8.1.
Worth trying with these settings.
@fgm - i see your again active, can we work together to get a new release of this module out? Would love to get back to using your contrib version.
+1 on this issue, although for me it only happens in combination with bigpipe enabled, and an authenticated user. Anonymous users work fine with bigpipe enabled.