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.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I'm in a trouble using this plugin on satellite because of some collisions. In the documentation, it's mentioned:
"This plugin is already integrated into the Satellite package, so you can’t require it with the composer."
But I don't find any dependency to this plugin in satellite main repository. I solve it by require it manually: composer require php-etl/rabbitmq-flow
composer require php-etl/rabbitmq-flow
But I guess there is some delay between the current version and the configuration. In Kiboko\Component\Flow\RabbitMQ\Rejection Construct:
Kiboko\Component\Flow\RabbitMQ\Rejection
public function __construct( private Client $connection, private string $stepUuid, private string $topic, private ?string $exchange = null, ) { $this->channel = $this->connection->channel(); $this->channel->queueDeclare( queue: $this->topic, passive: false, durable: true, exclusive: false, autoDelete: true, ); }
When the configuration is like this:
rabbitmq: host: 127.0.0.1 port: 5672 user: 'guest' password: 'guest' vhost: / topic: product.api_rejects
Configuration seems to be based on the old version of the construct: 38ce28e
Could you tell me the good way to define MQ with Satellite ?
Thank you,
Didier
The text was updated successfully, but these errors were encountered:
gplanchat
No branches or pull requests
Hello,
I'm in a trouble using this plugin on satellite because of some collisions. In the documentation, it's mentioned:
"This plugin is already integrated into the Satellite package, so you can’t require it with the composer."
But I don't find any dependency to this plugin in satellite main repository.
I solve it by require it manually:
composer require php-etl/rabbitmq-flow
But I guess there is some delay between the current version and the configuration.
In
Kiboko\Component\Flow\RabbitMQ\Rejection
Construct:
When the configuration is like this:
Configuration seems to be based on the old version of the construct: 38ce28e
Could you tell me the good way to define MQ with Satellite ?
Thank you,
Didier
The text was updated successfully, but these errors were encountered: