Fixes bug on fetching Funder using wrong url

This commit is contained in:
gkolokythas 2019-09-04 12:00:40 +03:00
parent 7b921a7ede
commit cab0d68fc2
1 changed files with 1 additions and 1 deletions

View File

@ -32,7 +32,7 @@ public class DynamicFunderConfigurationProdImpl implements DynamicFunderConfigur
@Override
public Configuration getConfiguration() {
if (this.configuration != null) return this.configuration;
String fileUrl = this.environment.getProperty("configuration.dynamicProjectUrl");
String fileUrl = this.environment.getProperty("configuration.dynamicFunderUrl");
System.out.println("Loaded also config file: " + fileUrl);
String current = null;
InputStream is = null;