SQS Queue URL behavior change between 2.0.2 image and latest

So haven’t been able to reproduce this using the CLI, but the following Java code shows the problem I encountered.

In 2.0.2 and releases previous to this, the following code worked:

SendMessageRequest sendMessageRequest = new SendMessageRequest(
“shortUniqueQueueName”, jsonMessage);
amazonSQSAsync.sendMessage(sendMessageRequest);

This also works with native AWS. Unfortunately, as of the “latest” localstack image build (4/20/23) I now have to do this

SendMessageRequest sendMessageRequest = new SendMessageRequest(
amazonSQSAsync.getQueueUrl(“shortUniqueQueueName”).getQueueUrl(), jsonMessage);
amazonSQSAsync.sendMessage(sendMessageRequest);

Any thoughts? @pizon?