-
Notifications
You must be signed in to change notification settings - Fork 7
Description
I am using smsir-python==1.0.8 in my project. I use a function in my app that for each request creates a new instance of SmsIr and does the rest as you can see below:
def _send_otp_sms(self, phone, code):
sms_client = SmsIr(API_KEY)
# Send verification code
params = [
{
"name": "CODE",
"value": code,
}
]
# Use template ID for verification code
template_id = "698036"
response = sms_client.send_verify_code(
number=phone, template_id=template_id, parameters=params
)
return responseToday I noticed that many users haven't been able to receive the verification sms and when I reached to the server logs I found something really strange!
2025-06-03 05:58:28.740
SMS sending error: Expecting value: line 1 column 1 (char 0)
2025-06-03 05:58:28.739
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.739
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.739
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.739
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.738
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.737
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.737
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.737
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.737
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.737
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.737
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.736
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.735
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.734
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.734
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.734
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.734
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:28.734
[2025-06-03 05:58:28,734] [ERROR] - HTTPSConnectionPool(host='api.sms.ir', port=443): Max retries exceeded with url: /v1/send/verify/ (Caused by NewConnectionError('<urllib3.connection.HTTPSConnection object at 0x7f3aef1024f0>: Failed to establish a new connection: [Errno -3] Try again'))
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.711
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.710
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.709
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.709
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.708
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.707
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.707
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.707
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.707
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.707
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.706
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.706
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.706
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.706
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.706
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.706
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.705
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.705
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.705
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.704
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.704
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.704
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.704
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.704
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.704
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.704
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.704
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.704
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.703
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.703
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.703
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.703
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.703
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.703
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.703
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.702
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.701
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.700
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.700
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.700
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.700
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.699
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.699
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.699
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.698
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.698
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.698
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.698
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.698
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.697
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.697
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.697
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
2025-06-03 05:58:23.697
[2025-06-03 05:58:23,696] [INFO] - send request to https://api.sms.ir/v1/send/verify/
This is the logs related to the first time that sending sms was unsuccessful and every attempt after that has caused similar issue. Looking at the previous logs I figured that these logs for each requests had been increasing! the request before this one had 99 [INFO] logs. This one that resulted in error had 100 [INFO] and [ERROR] logs.
I changed the code to only use one instance and this issue is fixed on my side. But this is a serious issue for a library. There seems to be some global state or memory leak that is causing previously created instances to be referenced do some action. I suspect this might be related to logger.