potiuk opened a new issue, #31087: URL: https://github.com/apache/airflow/issues/31087
### Body Our tests are broken in main due to latest botocore failing SQS tests. Example here: https://github.com/apache/airflow/actions/runs/4887737387/jobs/8724954226 ``` E botocore.exceptions.ClientError: An error occurred (400) when calling the SendMessage operation: <ErrorResponse xmlns="http://queue.amazonaws.com/doc/2012-11-05/"><Error><Type>Sender</Type><Code>AWS.SimpleQueueService.NonExistentQueue</Code><Message>The specified queue does not exist for this wsdl version.</Message><Detail/></Error><RequestId>ETDUP0OoJOXmn0WS6yWmB0dOhgYtpdVJCVwFWA28lYLKLmGJLAGu</RequestId></ErrorResponse> ``` The problem seems to come from botocore not recognizing just added queue: ``` QUEUE_NAME = "test-queue" QUEUE_URL = f"https://{QUEUE_NAME}" ``` Even if we replace it with the full queue name that gets returned by the "create_queue" API call to `moto`, it still does not work with latest botocore: ``` QUEUE_URL = f"https://sqs.us-east-1.amazonaws.com/123456789012/{QUEUE_NAME}" ``` Which indicates this likely a real botocore issue. ### Committer - [X] I acknowledge that I am a maintainer/committer of the Apache Airflow project. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
