Skip to content

Commit

Permalink
fix: corrected inflate and deflate logic, and corresponding tests
Browse files Browse the repository at this point in the history
  • Loading branch information
stebenz committed Dec 9, 2024
1 parent 709e6b4 commit 4667f11
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/provider/attribute_query.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func (p *IdentityProvider) attributeQueryHandleFunc(w http.ResponseWriter, r *ht
queriedAttrs = append(queriedAttrs, queriedAttr)
}
}
response = MakeAttributeQueryResponse(attrQuery.Id, p.GetEntityID(r.Context()), sp.GetEntityID(), attrs, queriedAttrs, p.TimeFormat)
response = makeAttributeQueryResponse(attrQuery.Id, p.GetEntityID(r.Context()), sp.GetEntityID(), attrs, queriedAttrs, p.TimeFormat)
return nil
},
func() {
Expand Down
2 changes: 1 addition & 1 deletion pkg/provider/response.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func getIssuer(entityID string) *saml.NameIDType {
}
}

func MakeAttributeQueryResponse(
func makeAttributeQueryResponse(
requestID string,
issuer string,
entityID string,
Expand Down

0 comments on commit 4667f11

Please sign in to comment.