Skip to content

Setting trusted_hosts and accessing request.host as cached property #3036

Answered by davidism
septatrix asked this question in Q&A
Discussion options

You must be logged in to vote

The host property is cached per request object. There is a new request object for each request, so the cached property from one request doesn't affect another. If you want to set a global default, you'd set the Request.trusted_hosts class attribute. If you want to override it for a specific request, you'd set it early in the request handling before accessing host. Cached properties can also be deleted to reset them.

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by septatrix
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants