Index: branches/ariel/xmldumps-backup/worker.py |
— | — | @@ -801,6 +801,14 @@ |
802 | 802 | if ((job == "metahistorybz2dump") or (job == "metacurrentdump") or (job == "articlesdump")): |
803 | 803 | if (not self.jobDoneSuccessfully("xmlstubsdump")): |
804 | 804 | return False |
| 805 | + if (job == "articlesmultistreamdump"): |
| 806 | + if (self.chunkInfo.chunksEnabled()): |
| 807 | + if (not self.jobDoneSuccessfully("articlesdumprecombine")): |
| 808 | + return False |
| 809 | + else: |
| 810 | + if (not self.jobDoneSuccessfully("articlesdump")): |
| 811 | + return False |
| 812 | + |
805 | 813 | return True |
806 | 814 | |
807 | 815 | def _getChunkToDo(self, jobName): |