Modify ↓
Opened 15 years ago
Closed 15 years ago
#5870 closed defect (fixed)
ignoring everything that can occur during login request is a bad idea
Reported by: | anatoly techtonik | Owned by: | Pedro Paixao |
---|---|---|---|
Priority: | normal | Component: | NoAnonymousPlugin |
Severity: | normal | Keywords: | |
Cc: | Trac Release: | 0.11 |
Description
Right now NoAnonymousPlugin is written so that it ignores any exceptions that occur during login phase. This is probably a bad idea.
source:noanonymousplugin/0.11/noanonymous/filter.py@4369
-
noanonymous/filter.py
32 32 except RequestDone: 33 33 # Reraise on redirect 34 34 raise 35 except Exception:36 # It is possible the error we got called on happened inside37 # the _get_panels call. Be sure to ignore it.38 pass39 35 40 return template, data, content_type 41 No newline at end of file 36 return template, data, content_type
Attachments (0)
Note: See
TracTickets for help on using
tickets.
Fixed in r6611.