Preparation of merge with master

This commit is contained in:
Tomas Bures 2018-08-06 20:24:51 +05:30
parent 6648028270
commit cd798b5af7
26 changed files with 607 additions and 285 deletions

View file

@ -10,10 +10,15 @@ const ImportType = {
};
const ImportStatus = {
NOT_READY: 0,
SCHEDULED: 1,
RUNNING: 2,
FINISHED: 3
PREP_SCHEDULED: 0,
PREP_RUNNING: 1,
PREP_FINISHED: 2,
PREP_FAILED: 3,
RUN_SCHEDULED: 4,
RUN_RUNNING: 5,
RUN_FINISHED: 6,
RUN_FAILED: 7
};
const RunStatus = {