mirror of
https://github.com/PAMGuard/PAMGuard.git
synced 2024-11-21 22:52:22 +00:00
Merge pull request #40 from PAMGuard/main
merge fix in reprocess manager
This commit is contained in:
commit
795b32e440
@ -175,9 +175,11 @@ public class ReprocessManager {
|
||||
|
||||
ArrayList<PamControlledUnit> outputStores = PamController.getInstance().findControlledUnits(DataOutputStore.class, true);
|
||||
boolean partStores = false;
|
||||
int nOutputStores = 0;
|
||||
for (PamControlledUnit aPCU : outputStores) {
|
||||
DataOutputStore offlineStore = (DataOutputStore) aPCU;
|
||||
StoreStatus status = offlineStore.getStoreStatus(false);
|
||||
nOutputStores++;
|
||||
if (status == null) {
|
||||
continue;
|
||||
}
|
||||
@ -191,8 +193,8 @@ public class ReprocessManager {
|
||||
}
|
||||
|
||||
if (partStores == false) {
|
||||
choiceSummary.addChoice(ReprocessStoreChoice.STARTNORMAL);
|
||||
return choiceSummary;
|
||||
// choiceSummary.addChoice(ReprocessStoreChoice.STARTNORMAL);
|
||||
return null; // no part full stores, so can start without questions
|
||||
}
|
||||
if (choiceSummary.getInputStartTime() >= choiceSummary.getOutputEndTime()) {
|
||||
/*
|
||||
|
Loading…
Reference in New Issue
Block a user