diff --git a/hawkbit-repository/hawkbit-repository-api/src/main/java/org/eclipse/hawkbit/repository/model/Rollout.java b/hawkbit-repository/hawkbit-repository-api/src/main/java/org/eclipse/hawkbit/repository/model/Rollout.java index f8dd10a35..a9459045a 100644 --- a/hawkbit-repository/hawkbit-repository-api/src/main/java/org/eclipse/hawkbit/repository/model/Rollout.java +++ b/hawkbit-repository/hawkbit-repository-api/src/main/java/org/eclipse/hawkbit/repository/model/Rollout.java @@ -182,25 +182,7 @@ public interface Rollout extends NamedEntity { * soft-deletion of the rollout which keeps references, in case of an * hard-deletion of a rollout the rollout-entry itself is deleted. */ - DELETED, - - /** - * Rollout could not be created due to errors, might be a database - * problem during asynchronous creating. - * - * @deprecated legacy status is not used anymore - */ - @Deprecated - ERROR_CREATING, - - /** - * Rollout could not be started due to errors, might be database problem - * during asynchronous starting. - * - * @deprecated legacy status is not used anymore - */ - @Deprecated - ERROR_STARTING + DELETED } /** diff --git a/hawkbit-repository/hawkbit-repository-jpa/src/main/java/org/eclipse/hawkbit/repository/jpa/model/JpaRollout.java b/hawkbit-repository/hawkbit-repository-jpa/src/main/java/org/eclipse/hawkbit/repository/jpa/model/JpaRollout.java index dce785e94..2681e5b78 100644 --- a/hawkbit-repository/hawkbit-repository-jpa/src/main/java/org/eclipse/hawkbit/repository/jpa/model/JpaRollout.java +++ b/hawkbit-repository/hawkbit-repository-jpa/src/main/java/org/eclipse/hawkbit/repository/jpa/model/JpaRollout.java @@ -235,8 +235,6 @@ public class JpaRollout extends AbstractJpaNamedEntity implements Rollout, Event put(RolloutStatus.STOPPED, 4); put(RolloutStatus.RUNNING, 5); put(RolloutStatus.FINISHED, 6); - put(RolloutStatus.ERROR_CREATING, 7); - put(RolloutStatus.ERROR_STARTING, 8); put(RolloutStatus.DELETING, 9); put(RolloutStatus.DELETED, 10); put(RolloutStatus.WAITING_FOR_APPROVAL, 11);