(sender, *args, **kwargs)
| 248 | |
| 249 | |
| 250 | def reload_indexes(sender, *args, **kwargs): |
| 251 | from haystack import connections |
| 252 | |
| 253 | for conn in connections.all(): |
| 254 | ui = conn.get_unified_index() |
| 255 | # Note: Unlike above, we're resetting the ``UnifiedIndex`` here. |
| 256 | # Thi gives us a clean slate. |
| 257 | ui.reset() |
nothing calls this directly
no test coverage detected
searching dependent graphs…