Skip to content

Commit

Permalink
qa
Browse files Browse the repository at this point in the history
  • Loading branch information
domdinicola committed Jun 11, 2024
1 parent 6642de5 commit c579908
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def cancel_request(frm, mtcn, database_key, reason=WIC):
}

client = WesternUnionClient("CancelSend_Service_H2HService.wsdl")
print('CANCEL', payload.get("foreign_remote_system", dict()).get("reference_no", None))
print("CANCEL", payload.get("foreign_remote_system", dict()).get("reference_no", None))
return client.response_context("CancelSend", payload, "CancelSend_Service_H2H", f"SOAP_HTTP_Port_{wu_env}")


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ def send_money_validation(payload):
wu_env = config.WESTERN_UNION_WHITELISTED_ENV
client = WesternUnionClient("SendMoneyValidation_Service_H2HService.wsdl")
sentry_sdk.capture_message("Western Union: Send Money Validation")
print('VALIDATION', payload.get("foreign_remote_system", dict()).get("reference_no", None))
print("VALIDATION", payload.get("foreign_remote_system", dict()).get("reference_no", None))
return client.response_context(
"sendmoneyValidation", payload, "SendmoneyValidation_Service_H2H", f"SOAP_HTTP_Port_{wu_env}"
)
Expand All @@ -134,7 +134,7 @@ def send_money_store(payload):
wu_env = config.WESTERN_UNION_WHITELISTED_ENV
client = WesternUnionClient("SendMoneyStore_Service_H2HService.wsdl")
sentry_sdk.capture_message("Western Union: Send Money Store")
print('STORE', payload.get("mtcn", None))
print("STORE", payload.get("mtcn", None))
return client.response_context(
"SendMoneyStore_H2H", payload, "SendMoneyStore_Service_H2H", f"SOAP_HTTP_Port_{wu_env}"
)
Expand Down

0 comments on commit c579908

Please sign in to comment.