You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
thrownewInvalidConfigurationException(sprintf('You have configured "async_aws.%s" but the "%s" package is not installed. Try running "composer require %s"', $name, $name, $availableServices[$name]['package']));
37
37
}
@@ -54,14 +54,14 @@ private function registerInstalledServices(ContainerBuilder $container, array $c
if (isset($config['type']) && $name !== $config['type']) {
53
53
thrownewInvalidConfigurationException(sprintf('You cannot define a service named "%s" with type "%s". That is super confusing.', $name, $config['type']));
54
54
}
55
-
$services[$name]['type'] = $name;
55
+
$clients[$name]['type'] = $name;
56
56
} elseif (!isset($config['type'])) {
57
57
if (!\in_array($name, $awsServices)) {
58
-
thrownewInvalidConfigurationException(sprintf('The "async_aws.service.%s" does not have a type. We were unable to guess what AWS service you want. Please add "aws.service.%s.type".', $name, $name));
58
+
thrownewInvalidConfigurationException(sprintf('The "async_aws.client.%s" does not have a type. We were unable to guess what AWS service you want. Please add "aws.service.%s.type".', $name, $name));
0 commit comments