Projet

Général

Profil

0001-saml-soap_call-takes-two-arguments-43537.patch

Paul Marillonnet, 02 juin 2020 15:51

Télécharger (917 octets)

Voir les différences:

Subject: [PATCH] saml: soap_call takes two arguments (#43537)

 src/authentic2/saml/common.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
src/authentic2/saml/common.py
480 480
    '''Send the SOAP request hold by the profile'''
481 481
    if not profile.msgUrl or not profile.msgBody:
482 482
        raise SOAPException('Missing body or url')
483
    return soap_call(profile.msgUrl, profile.msgBody, None)
483
    return soap_call(profile.msgUrl, profile.msgBody)
484 484

  
485 485

  
486 486
def set_saml2_response_responder_status_code(response, code, msg=None):
487
-