Skip to content

Commit 53f90aa

Browse files
author
Rebecka Gulliksson
committed
Recognize MDQ metadata storage from config.
1 parent 529a561 commit 53f90aa

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/saml2/mdstore.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -871,6 +871,9 @@ def load(self, *args, **kwargs):
871871
elif typ == "loader":
872872
key = args[1]
873873
_md = MetaDataLoader(self.attrc, args[1], **_args)
874+
elif typ == "mdq":
875+
key = args[1]
876+
_md = MetaDataMDX(args[1])
874877
else:
875878
raise SAMLError("Unknown metadata type '%s'" % typ)
876879
_md.load()

0 commit comments

Comments
 (0)