You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by dy...@apache.org on 2022/11/18 12:29:13 UTC

[incubator-datalab] branch DATALAB-3101 created (now 80fcf13b5)

This is an automated email from the ASF dual-hosted git repository.

dyankiv pushed a change to branch DATALAB-3101
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git


      at 80fcf13b5 fix status check for failed instances

This branch includes the following new commits:

     new 80fcf13b5 fix status check for failed instances

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.



---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org


[incubator-datalab] 01/01: fix status check for failed instances

Posted by dy...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

dyankiv pushed a commit to branch DATALAB-3101
in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git

commit 80fcf13b568308a80b4105e4a807551feb9986b7
Author: Denys Yankiv <de...@gmail.com>
AuthorDate: Fri Nov 18 14:28:53 2022 +0200

    fix status check for failed instances
---
 .../backendapi/schedulers/CheckInfrastructureStatusScheduler.java       | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/services/self-service/src/main/java/com/epam/datalab/backendapi/schedulers/CheckInfrastructureStatusScheduler.java b/services/self-service/src/main/java/com/epam/datalab/backendapi/schedulers/CheckInfrastructureStatusScheduler.java
index 40ae7f4af..43e55bbc1 100644
--- a/services/self-service/src/main/java/com/epam/datalab/backendapi/schedulers/CheckInfrastructureStatusScheduler.java
+++ b/services/self-service/src/main/java/com/epam/datalab/backendapi/schedulers/CheckInfrastructureStatusScheduler.java
@@ -51,7 +51,7 @@ import static com.epam.datalab.dto.UserInstanceStatus.*;
 public class CheckInfrastructureStatusScheduler implements Job {
 
     private static final List<UserInstanceStatus> statusesToCheck =
-            Arrays.asList(STARTING, CREATING, RUNNING, STOPPING, RECONFIGURING, STOPPED, TERMINATING, TERMINATED);
+            Arrays.asList(STARTING, CREATING, RUNNING, STOPPING, RECONFIGURING, STOPPED, TERMINATING, TERMINATED, FAILED);
 
     private final InfrastructureInfoService infrastructureInfoService;
     private final SecurityService securityService;


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@datalab.apache.org
For additional commands, e-mail: commits-help@datalab.apache.org