diff --git a/pdb-plotting/src/main/java/org/lucares/pdb/plot/api/ParallelRequestsAggregate.java b/pdb-plotting/src/main/java/org/lucares/pdb/plot/api/ParallelRequestsAggregate.java index a33b592..71497ce 100644 --- a/pdb-plotting/src/main/java/org/lucares/pdb/plot/api/ParallelRequestsAggregate.java +++ b/pdb-plotting/src/main/java/org/lucares/pdb/plot/api/ParallelRequestsAggregate.java @@ -51,7 +51,7 @@ public class ParallelRequestsAggregate extends AggregateHandler { @Override public CustomAggregator createCustomAggregator(final Path tmpDir, final PlotSettings plotSettings, final long fromEpochMilli, final long toEpochMilli) { - if ((toEpochMilli - fromEpochMilli) <= TimeUnit.HOURS.toMillis(50)) { + if ((toEpochMilli - fromEpochMilli) <= TimeUnit.HOURS.toMillis(24)) { return new ParallelRequestsAggregator(tmpDir, fromEpochMilli, toEpochMilli); } else { return null;