e81a8ce073
* 🐛 fix SERVER_NAME enforcement in url_for fixes #1707 * 💡 add additional documentation for using request.args fixes #1704 * ✅ add additional test to check url_for without SERVER_NAME * 📝 add changelog for fixes
5 lines
284 B
ReStructuredText
5 lines
284 B
ReStructuredText
Fix `url_for` behavior with missing SERVER_NAME
|
|
|
|
If the `SERVER_NAME` was missing in the `app.config` entity, the `url_for` on the `request` and `app` were failing
|
|
due to an `AttributeError`. This fix makes the availability of `SERVER_NAME` on our `app.config` an optional behavior.
|