Skip to content

Commit

Permalink
try some dumb workarounds
Browse files Browse the repository at this point in the history
  • Loading branch information
alexbusu-motork committed Aug 5, 2024
1 parent aa29e73 commit 9d9a04f
Showing 1 changed file with 15 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,16 +24,28 @@ protected function tearDown(): void

protected function createContext()
{
return $this->createSnsQsContext();
try {
return $this->createSnsQsContext();
} finally {
sleep(1);
}
}

protected function createTopic(Context $context, $topicName)
{
return $this->createSnsQsTopic($topicName);
try {
return $this->createSnsQsTopic($topicName);
} finally {
sleep(1);
}
}

protected function createQueue(Context $context, $queueName)
{
return $this->createSnsQsQueue($queueName);
try {
return $this->createSnsQsQueue($queueName);
} finally {
sleep(1);
}
}
}

0 comments on commit 9d9a04f

Please sign in to comment.