(follower_ident)
| 73 | |
| 74 | |
| 75 | def create_follower_db(follower_ident): |
| 76 | for cfg in _configs_for_db_operation(): |
| 77 | log.info("CREATE database %s, URI %r", follower_ident, cfg.db.url) |
| 78 | create_db(cfg, cfg.db, follower_ident) |
| 79 | |
| 80 | |
| 81 | def setup_config(db_url, options, file_config, follower_ident): |
nothing calls this directly
no test coverage detected