2019-07-07 11:18:12 +05:30
|
|
|
// The `scheduling` status is only present on the client-side,
|
|
|
|
// it is used as the status when we are requesting to start an import.
|
|
|
|
|
|
|
|
export const STATUSES = {
|
|
|
|
FINISHED: 'finished',
|
|
|
|
FAILED: 'failed',
|
|
|
|
SCHEDULED: 'scheduled',
|
2021-04-17 20:07:23 +05:30
|
|
|
CREATED: 'created',
|
2019-07-07 11:18:12 +05:30
|
|
|
STARTED: 'started',
|
|
|
|
NONE: 'none',
|
|
|
|
SCHEDULING: 'scheduling',
|
2021-04-29 21:17:54 +05:30
|
|
|
CANCELLED: 'cancelled',
|
2022-07-16 23:28:13 +05:30
|
|
|
TIMEOUT: 'timeout',
|
2021-04-29 21:17:54 +05:30
|
|
|
};
|