Skip to content

Commit

Permalink
fix: custom sms send success but prompt fails
Browse files Browse the repository at this point in the history
  • Loading branch information
O-Jiangweidong authored and BaiJiangJie committed Jul 12, 2024
1 parent e9f4615 commit 281a2d9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions apps/common/sdk/sms/custom.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,7 @@ def send_sms(self, phone_numbers: list, template_param: OrderedDict, **kwargs):
kwargs = {'params': params}
try:
response = action(url=settings.CUSTOM_SMS_URL, verify=False, **kwargs)
if response.reason != 'OK':
raise JMSException(detail=response.text, code=response.status_code)
response.raise_for_status()
except Exception as exc:
logger.error('Custom sms error: {}'.format(exc))
raise JMSException(exc)
Expand Down
2 changes: 1 addition & 1 deletion apps/ops/signal_handlers.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def check_registered_tasks(*args, **kwargs):
'perms.tasks.check_asset_permission_will_expired',
'ops.tasks.create_or_update_registered_periodic_tasks', 'perms.tasks.check_asset_permission_expired',
'settings.tasks.ldap.import_ldap_user_periodic', 'users.tasks.check_password_expired_periodic',
'common.utils.verify_code.send_async', 'assets.tasks.nodes_amount.check_node_assets_amount_period_task',
'common.utils.verify_code.send_sms_async', 'assets.tasks.nodes_amount.check_node_assets_amount_period_task',
'users.tasks.check_user_expired', 'orgs.tasks.refresh_org_cache_task',
'terminal.tasks.upload_session_replay_to_external_storage', 'terminal.tasks.clean_orphan_session',
'audits.tasks.clean_audits_log_period', 'authentication.tasks.clean_django_sessions'
Expand Down

0 comments on commit 281a2d9

Please sign in to comment.