// (need both suspended and active sources)
srcQuery.put(SourcePojo.isApproved_, true);
srcQuery.put(SourcePojo.harvestBadSource_, false);
DBCursor dbc = DbManager.getIngest().getSource().find(srcQuery);
List<SourcePojo> srcList = SourcePojo.listFromDb(dbc, SourcePojo.listType(), new SourcePojoSubstitutionDbMap());
long mostRecentlyChangedSource = 0L;
for (SourcePojo src: srcList) {
// Some input checking:
if (ignoreSource(src, isSlave)) {
continue;