This is an automated email from the ASF dual-hosted git repository. ykinash pushed a commit to branch DATALAB-2527 in repository https://gitbox.apache.org/repos/asf/incubator-datalab.git
commit 0201b1d4df163832562ecb745d6df4148fb0af26 Author: KinashYurii <[email protected]> AuthorDate: Thu Sep 30 13:18:06 2021 +0300 [DATALAB] -- emr status fix. --- .../backendapi/schedulers/CheckInfrastructureStatusScheduler.java | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 808a1f2..ab5f7e0 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 @@ -50,8 +50,7 @@ import static com.epam.datalab.dto.UserInstanceStatus.*; public class CheckInfrastructureStatusScheduler implements Job { private static final List<UserInstanceStatus> statusesToCheck = - Arrays.asList(RUNNING, STARTING, CREATING, CREATING_IMAGE, - CONFIGURING, STOPPING, RECONFIGURING, STOPPED, TERMINATING, TERMINATED); + Arrays.asList(RUNNING, STOPPING, RECONFIGURING, STOPPED, TERMINATING, TERMINATED); private final InfrastructureInfoService infrastructureInfoService; private final SecurityService securityService; --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
