Commit d3d8f2c
committed
[FIX] Parsing db_names from config
When trying to load queue_job module with `--load base,web,queue_job`,
and specifying database either with command line option `-d` or with
`db_name` variable in config, an error was raised:
`AttributeError: 'list' object has no attribute 'split'`.
It's due to a change in parsing `db_name` config variable.
Previously the database name list was parsed as a string with
coma-separated values. Currently, the config always returns a list.1 parent 038c334 commit d3d8f2c
1 file changed
+1
-1
lines changed| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
| |||
473 | 473 | | |
474 | 474 | | |
475 | 475 | | |
476 | | - | |
| 476 | + | |
477 | 477 | | |
478 | 478 | | |
479 | 479 | | |
| |||
0 commit comments