-
-
Notifications
You must be signed in to change notification settings - Fork 564
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Deliver SM is not sent to SMPP connection #1236
Comments
what is your installation method ???
Giorgi Gogishvili ***@***.***>, 25 Eki 2024 Cum, 02:14
tarihinde şunu yazdı:
… Hello,
Have this error in log, jasmin version 0.11.1
2024-10-25 02:01:11 ERROR 4206 (<class 'AttributeError'>) while handling
submit_sm_resp pdu for msgid:91e90f26-d5b4-46b5-ac67-b07ffd7cd713:
'SubmitSM' object has no attribute 'response'
Because of this Deliver SM was not sent to SMPP connection
Fond errors in "managers/listener.py" line 390 and 393
line 390: instead of
dlr = DLR(pdu_type=_pdu.response.id, msgid=msgid,
status=_pdu.response.status,
smpp_msgid=_pdu.response.params['message_id'])
should be
dlr = DLR(pdu_type=r.response.id, msgid=msgid, status=r.response.status,
smpp_msgid=r.response.params['message_id'])
line 393 : instead of
dlr = DLR(pdu_type=_pdu.response.id, msgid=msgid,
status=_pdu.response.status)
should be
dlr = DLR(pdu_type=r.response.id, msgid=msgid, status=r.response.status)
—
Reply to this email directly, view it on GitHub
<#1236>, or unsubscribe
<https://github.com/notifications/unsubscribe-auth/ABPZPXFWRKHHPTCXXIZNLH3Z5FWNJAVCNFSM6AAAAABQSA6VJKVHI2DSMVQWIX3LMV43ASLTON2WKOZSGYYTENRVGU3DQNY>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
installed with pip in venv |
are you using magticom ? |
yes, does it makes any difference? |
pip install jasmin==0.11.0 |
Thank you, will install older version. How do you know that i am using
magticom?
…On Fri, Oct 25, 2024, 02:29 IcecellMVNO ***@***.***> wrote:
pip install jasmin==0.11.0
—
Reply to this email directly, view it on GitHub
<#1236 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AH6E2BVNAUZJPGVPJ422Q2LZ5FYC5AVCNFSM6AAAAABQSA6VJKVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMZDIMZWGQ2TANZXGQ>
.
You are receiving this because you authored the thread.Message ID:
***@***.***>
|
im living tblisi im icecell mvno owner :) and your name :) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hello,
Have this error in log, jasmin version 0.11.1
2024-10-25 02:01:11 ERROR 4206 (<class 'AttributeError'>) while handling submit_sm_resp pdu for msgid:91e90f26-d5b4-46b5-ac67-b07ffd7cd713: 'SubmitSM' object has no attribute 'response'
Because of this Deliver SM was not sent to SMPP connection
Fond errors in "managers/listener.py" line 390 and 393
line 390: instead of
dlr = DLR(pdu_type=_pdu.response.id, msgid=msgid, status=_pdu.response.status,
smpp_msgid=_pdu.response.params['message_id'])
should be
dlr = DLR(pdu_type=r.response.id, msgid=msgid, status=r.response.status,
smpp_msgid=r.response.params['message_id'])
line 393 : instead of
dlr = DLR(pdu_type=_pdu.response.id, msgid=msgid, status=_pdu.response.status)
should be
dlr = DLR(pdu_type=r.response.id, msgid=msgid, status=r.response.status)
The text was updated successfully, but these errors were encountered: