(follower_ident)
| 110 | |
| 111 | |
| 112 | def drop_follower_db(follower_ident): |
| 113 | for cfg in _configs_for_db_operation(): |
| 114 | log.info("DROP database %s, URI %r", follower_ident, cfg.db.url) |
| 115 | drop_db(cfg, cfg.db, follower_ident) |
| 116 | |
| 117 | |
| 118 | def generate_db_urls(db_urls, extra_drivers): |
nothing calls this directly
no test coverage detected