We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e5111c5 commit 8add3a7Copy full SHA for 8add3a7
1 file changed
src/main/java/ch/unibas/dmi/dbis/chronos/agent/ChronosHttpClient.java
@@ -679,6 +679,8 @@ public enum ChronosRestApi {
679
public static final int STATUS_CODE__ERROR = 600;
680
public static final int STATUS_CODE__NO_NEXT_JOB = 601;
681
public static final int STATUS_CODE__JOB_DOES_NOT_EXIST = 602;
682
+ public static final int STATUS_CODE__OUTDATED_VERSION = 631;
683
+ public static final int STATUS_CODE__UNKNOWN_ENVIRONMENT = 632;
684
public static final String STATUS_MESSAGE_KEY = "message";
685
686
public static final String RESPONSE_OBJECT_KEY = "response";
@@ -750,8 +752,8 @@ public int getJobPhaseId() {
750
752
751
753
754
public enum JobStatus {
-
- SCHEDULED( 1 ),
755
+ SCHEDULED( 0 ),
756
+ SETUP( 1),
757
RUNNING( 2 ),
758
FINISHED( 3 ),
759
ABORTED( -1 ),
0 commit comments