Skip to content

Commit

Permalink
Fixing csv fetching bug
Browse files Browse the repository at this point in the history
  • Loading branch information
Goulven.Furet authored and Goulven.Furet committed Dec 10, 2023
1 parent 56d3614 commit e79370a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -266,7 +266,7 @@ public void run() {
.collect(Collectors.toSet());
}

if (null != config.getDatasourceUrls() || config.getDatasourceUrls().size() == 0) {
if (null != config.getDatasourceUrls() && config.getDatasourceUrls().size() > 0) {
// Classical full datafeed config
urls = config.getDatasourceUrls();
}
Expand Down

0 comments on commit e79370a

Please sign in to comment.