Nate D.
Nate D.
I'm going to take a look into this.
So this affects a lot of the headers because it involves header_property. I think maybe it's odd behavior when setting headers to immediately call the normalizer when setting. I'm not...
I'm wondering if it's worth it to change how headers are handled in general. It appears there are all the set/get/append_header methods in response.py, but then we have these HeaderProperty...
@kgriffs I think this is probably unlikely for 2.0 release, mostly because headers are involved all over the place so the PR will be pretty big. I've been tinkering and...
It's directly from [RFC 6265 Section 4.1.1](https://tools.ietf.org/html/rfc6265#section-4.1.1) > cookie-name = token cookie-value = *cookie-octet / ( DQUOTE *cookie-octet DQUOTE ) cookie-octet = %x21 / %x23-2B / %x2D-3A / %x3C-5B /...
Unless I'm mistaken, the [bare metal example](https://github.com/jmvrbanac/falcon-example/blob/master/example/db/manager.py) is doing a similar thing to the middleware originally posted: In the db manager init: ```python self.DBSession = scoping.scoped_session( orm.sessionmaker( bind=self.engine, autocommit=True )...
I could be wrong but I thought autocommit will only call commit() and not close() on the Session though, yea? Agreed it's fine for introductory, but the docs are pretty...