I think there’s an issue with DBConnection class since 2.4.0 release when we use AnalyseDB class.
Indeed when doAnalyze(config) method is called :
in 2.3.4 release in the contructor of DBConnection :
this.config = configProperties;
in 2.4.0 and late release in the contructor of DBConnection :
loadProperties(configProperties);
private void loadProperties(Properties configProperties) {
PropertyRefResolver resolver = new PropertyRefResolver(getGraph());
...
...
}
The problem is that getGraph() always return “null” so it doesn’t work.
I can’t generate new metadata file now.
Can you watch for this issue ?
Thanks.