mirror of
https://github.com/apache/cloudstack.git
synced 2025-11-02 20:02:29 +01: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…
x
Reference in New Issue
Block a user