(**kwargs)
| 63 | # Probably not extraordinarily thread-safe but should only matter when |
| 64 | # DEBUG = True. |
| 65 | def reset_search_queries(**kwargs): |
| 66 | for conn in connections.all(): |
| 67 | if conn: |
| 68 | conn.reset_queries() |
| 69 | |
| 70 | |
| 71 | if settings.DEBUG: |
searching dependent graphs…