- Issue created by @prashant.c
- First commit to issue fork.
- Status changed to Needs review
3 months ago 7:40am 14 August 2024 - 🇮🇳India sarwan_verma
Hi,
I have resolved the "module installation " issue and created MR!1.
please review and verify it
Thanks!
- Status changed to RTBC
3 months ago 10:02am 14 August 2024 - 🇮🇳India bhaveshdas
Hi I have tested MR!1 in drupal 10 version.Its working properly right now.
Attaching the Before and After screenshots.
Hence it can be move to the RTBC.
RTBC+1Thankyou !!
- Status changed to Needs review
3 months ago 12:09pm 14 August 2024 - 🇮🇳India prashant.c Dharamshala
@sarwan_verma @bhaveshdas
You have just changed the key name which could be anything, I am not sure how it is fixing the issue. Could you please explain?
The error is about the
constructor
in the drush command class,Drupal\drush_clear_plugins_cache\Commands\PluginManagerCacheCommands
is expecting an argument.public function __construct(ContainerInterface $container) { parent::__construct(); $this->container = $container; }
and in the
drush.services.yml
file no argument is passed. We need to pass@service_container
argument, which should be the correct fix for this issue.I have pushed the change after testing locally, please review.
Thanks