mirror of
https://github.com/apache/cloudstack
synced 2026-08-02 05:26:35 +00:00
CLOUDSTACK-1181: Fix NPE, ignore if default path is not readable, we're passing props file anyway
Signed-off-by: Rohit Yadav <bhaisaab@apache.org>
This commit is contained in:
parent
d44d4b76e7
commit
7c003611d0
@ -156,7 +156,10 @@ public class DatabaseCreator {
|
||||
System.exit(1);
|
||||
}
|
||||
|
||||
Transaction.initDataSource(dbPropsFile);
|
||||
try {
|
||||
Transaction.initDataSource(dbPropsFile);
|
||||
} catch (NullPointerException e) {
|
||||
}
|
||||
initDB(dbPropsFile, rootPassword, databases, dryRun);
|
||||
|
||||
// Process sql files
|
||||
|
||||
Loading…
Reference in New Issue
Block a user