The error ive got is:
InvalidParameter
Invalid parameter: Topic Name
I have debugged and saw that the method getNameWithPrefix of AbstractProvider.php should have a way to preserve the ".fifo" extension to be used in the sqs queue create method, QueueName parameter
Did quick adjustment just make it pass, maybe you will find more elegant solution.
public function getNameWithPrefix($removeFifoExtension=true)
{
if (!empty($this->options['queue_name'])) {
if($removeFifoExtension) {
return str_replace('.fifo', '', $this->options['queue_name']);
} else {
return $this->options['queue_name'];
}
}
return sprintf("%s_%s", self::QPUSH_PREFIX, $this->name);
}
Then in AwsProvider.php file in line 405 add the false parameter preserve fifo extension in aws sqs queue name creation
$result = $this->sqs->createQueue(['QueueName' => $this->getNameWithPrefix(false), 'Attributes' => $attributes]);
Hope you can incorporate this to the project soon, thank you the bundle looks very good!