Skip to content

Commit

Permalink
Merge branch 'jcoop-develop-patch-38140' into 'develop'
Browse files Browse the repository at this point in the history
EMC-47 - Increased fuseki service schedule to once every 5 mins

See merge request eip/catalogue!546
  • Loading branch information
joncooper65 committed Oct 19, 2023
2 parents 306b791 + a9addb1 commit 37ec395
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public FusekiExportService(
this.catalogueTitle = defaultCatalogue.getTitle();
}

@Scheduled(initialDelay = TimeConstants.ONE_MINUTE, fixedDelay = TimeConstants.ONE_DAY)
@Scheduled(initialDelay = TimeConstants.ONE_MINUTE, fixedDelay = (TimeConstants.ONE_MINUTE * 5))
@SneakyThrows
public void runExport() {
post(getBigTtl());
Expand Down

0 comments on commit 37ec395

Please sign in to comment.