clegaspi / saml_reader

A tool to parse and verify SAML response data for MongoDB Cloud.
MIT License
7 stars 2 forks source link

Figure out what is needed to support python3-saml==1.11.0 #49

Closed clegaspi closed 2 years ago

clegaspi commented 3 years ago

Currently we are using python3-saml 1.10.1, but the minor version release of 1.11.0 broke something in the custom class that is built on it. Figure out what's wrong and how to fix it.

It is probably a change to the constructor, and since OLISamlParser doesn't call the superclass' constructor, something is now missing from it. Fwiw, it doesn't call the constructor because the custom work we need to do is done in the constructor and would barf/get overwritten if we called the superclass constructor.