From 16a7c1e49328302b3512b374e7aeecb604aa64cc Mon Sep 17 00:00:00 2001 From: Chris Church Date: Mon, 26 Sep 2016 22:15:12 -0400 Subject: [PATCH] Based on customer config example, entity ID doesn't have to be a URL. --- awx/sso/fields.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/awx/sso/fields.py b/awx/sso/fields.py index ce8316e265..6655ad3523 100644 --- a/awx/sso/fields.py +++ b/awx/sso/fields.py @@ -581,7 +581,7 @@ class SAMLIdPField(BaseDictWithChildField): 'missing_keys': _('Missing required key(s) for IdP: {missing_keys}.'), } child_fields = { - 'entity_id': fields.URLField(), + 'entity_id': fields.CharField(), 'url': fields.URLField(), 'x509cert': fields.CharField(validators=[validate_certificate]), 'attr_user_permanent_id': fields.CharField(required=False),