Skip to content
Snippets Groups Projects

Make `swh db init` command work *properly* with the --dbname option

Merged David Douard requested to merge douardda/swh-core:db-init into master
2 files
+ 64
21
Compare changes
  • Side-by-side
  • Inline
Files
2
  • This allows to run the command `swh db init --dname DBURI` without
    giving a configuration file AND properly set the db version, which
    can be handy some times when testing.
    
    Note that this may not work for all swh packages, when the postgresql
    backend for the given swh package needs more configuration entries than
    just the psql connection string.
+ 21
21
@@ -195,27 +195,27 @@ def db_init(ctx, module, dbname, flavor, initial_version):
module, dbname, flavor
)
if dbversion is None:
if cfg is not None:
# db version has not been populated by sql init scripts (new style),
# let's do it; instantiate the data source to retrieve the current
# (expected) db version
datastore_factory = getattr(import_swhmodule(module), "get_datastore", None)
if datastore_factory:
datastore = datastore_factory(**cfg)
if not hasattr(datastore, "current_version"):
logger.warning(
"Datastore %s does not declare the "
"'current_version' attribute",
datastore,
)
else:
code_version = datastore.current_version
logger.info(
"Initializing database version to %s from the %s datastore",
code_version,
module,
)
swh_set_db_version(dbname, code_version, desc="DB initialization")
# db version has not been populated by sql init scripts (new style),
# let's do it; instantiate the data source to retrieve the current
# (expected) db version
if cfg is None:
cfg = {"cls": "postgresql", "db": dbname}
datastore_factory = getattr(import_swhmodule(module), "get_datastore", None)
if datastore_factory:
datastore = datastore_factory(**cfg)
if not hasattr(datastore, "current_version"):
logger.warning(
"Datastore %s does not declare the " "'current_version' attribute",
datastore,
)
else:
code_version = datastore.current_version
logger.info(
"Initializing database version to %s from the %s datastore",
code_version,
module,
)
swh_set_db_version(dbname, code_version, desc="DB initialization")
dbversion = get_database_info(dbname)[1]
if dbversion is None:
Loading