mirror of
https://github.com/crawlab-team/crawlab.git
synced 2026-01-30 18:00:56 +01:00
updated methodologies of deployment and running spider
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
class NodeType:
|
||||
class NodeStatus:
|
||||
ONLINE = 'online'
|
||||
OFFLINE = 'offline'
|
||||
|
||||
8
constants/task.py
Normal file
8
constants/task.py
Normal file
@@ -0,0 +1,8 @@
|
||||
class TaskStatus:
|
||||
PENDING = 'PENDING'
|
||||
STARTED = 'STARTED'
|
||||
SUCCESS = 'SUCCESS'
|
||||
FAILURE = 'FAILURE'
|
||||
RETRY = 'RETRY'
|
||||
REVOKED = 'REVOKED'
|
||||
UNAVAILABLE = 'UNAVAILABLE'
|
||||
Reference in New Issue
Block a user