mirror of
https://github.com/galaxyproject/galaxy.git
synced 2026-09-21 13:50:20 +08:00
Set a default (database/universe.sqlite) in manage_db.py in case the deprecated database_file is unset
This commit is contained in:
@@ -23,7 +23,7 @@ if cp.has_option( "app:main", "database_connection" ):
|
||||
elif cp.has_option( "app:main", "database_file" ):
|
||||
db_url = "sqlite:///%s?isolation_level=IMMEDIATE" % cp.get( "app:main", "database_file" )
|
||||
else:
|
||||
db_url = None
|
||||
db_url = "sqlite:///./database/universe.sqlite?isolation_level=IMMEDIATE"
|
||||
|
||||
dialect_to_egg = {
|
||||
"sqlite" : "pysqlite>=2",
|
||||
|
||||
Reference in New Issue
Block a user