(self)
| 210 | return False |
| 211 | |
| 212 | def new_session(self): |
| 213 | session = self.parent.new_session() |
| 214 | |
| 215 | # Do not store the session if skip paths |
| 216 | for sp in self.skip_paths: |
| 217 | if request.path.startswith(sp): |
| 218 | return session |
| 219 | |
| 220 | with sess_lock: |
| 221 | self._cache[session.sid] = session |
| 222 | self._normalize() |
| 223 | |
| 224 | return session |
| 225 | |
| 226 | def remove(self, sid): |
| 227 | with sess_lock: |
nothing calls this directly
no test coverage detected