CrossrefDump - changed the wf to be able to resume from one of the steps

This commit is contained in:
Miriam Baglioni 2021-08-20 11:11:35 +02:00
parent f3b6c392c1
commit 35880c0e7b
1 changed files with 10 additions and 0 deletions

View File

@ -41,6 +41,16 @@
</configuration>
</global>
<start to="resume_from"/>
<decision name="resume_from">
<switch>
<case to="ImportCrossRef">${wf:conf('resumeFrom') eq 'ImportCrossRef'}</case>
<case to="UnpackCrossrefEntries">${wf:conf('resumeFrom') eq 'Unpack'}</case>
<default to="removeFiles"/> <!-- first action to be done when downloadDump is to be performed -->
</switch>
</decision>
<start to="removeFiles"/>