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.
2 parents cf6b3ac + 86879ea commit ecde4cbCopy full SHA for ecde4cb
src/Provider/AwsProvider.php
@@ -508,13 +508,14 @@ public function createTopic()
508
return false;
509
}
510
511
+ $name = str_replace('.', '-', $this->getNameWithPrefix());
512
$result = $this->sns->createTopic([
- 'Name' => $this->getNameWithPrefix()
513
+ 'Name' => $name
514
]);
515
516
$this->topicArn = $result->get('TopicArn');
517
- $key = $this->getNameWithPrefix() . '_arn';
518
+ $key = $name . '_arn';
519
$this->cache->save($key, $this->topicArn);
520
521
$this->log(200, "Created SNS Topic", ['TopicARN' => $this->topicArn]);
0 commit comments