You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@datalab.apache.org by yk...@apache.org on 2021/07/08 07:22:33 UTC

[incubator-datalab] branch develop updated: [DATALAB-2504] -- fixed bugs with config

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

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


The following commit(s) were added to refs/heads/develop by this push:
     new 1dce033  [DATALAB-2504] -- fixed bugs with config
1dce033 is described below

commit 1dce033f46377bb9aca62b62616cc7ef2d1728a4
Author: KinashYurii <ur...@gmail.com>
AuthorDate: Thu Jul 8 10:20:43 2021 +0300

    [DATALAB-2504] -- fixed bugs with config
---
 .../com/epam/datalab/properties/ChangePropertiesConst.java   | 12 ++++++------
 .../com/epam/datalab/properties/ChangePropertiesService.java |  4 ++--
 2 files changed, 8 insertions(+), 8 deletions(-)

diff --git a/services/datalab-webapp-common/src/main/java/com/epam/datalab/properties/ChangePropertiesConst.java b/services/datalab-webapp-common/src/main/java/com/epam/datalab/properties/ChangePropertiesConst.java
index 1fa021c..d4a2c51 100644
--- a/services/datalab-webapp-common/src/main/java/com/epam/datalab/properties/ChangePropertiesConst.java
+++ b/services/datalab-webapp-common/src/main/java/com/epam/datalab/properties/ChangePropertiesConst.java
@@ -23,17 +23,17 @@ public interface ChangePropertiesConst {
     String GKE_SELF_SERVICE_PATH = "/root/self-service.yaml";
     String GKE_SELF_SERVICE = "self-service.yaml";
     String SELF_SERVICE = "self-service.yml";
-        String SELF_SERVICE_PROP_PATH = "services/self-service/self-service.yml";
-//    String SELF_SERVICE_PROP_PATH = "/opt/datalab/conf/self-service.yml";
+    //        String SELF_SERVICE_PROP_PATH = "services/self-service/self-service.yml";
+    String SELF_SERVICE_PROP_PATH = "/opt/datalab/conf/self-service.yml";
     String PROVISIONING_SERVICE = "provisioning.yml";
-        String PROVISIONING_SERVICE_PROP_PATH = "services/provisioning-service/provisioning.yml";
-//    String PROVISIONING_SERVICE_PROP_PATH = "/opt/datalab/conf/provisioning.yml";
+    //        String PROVISIONING_SERVICE_PROP_PATH = "services/provisioning-service/provisioning.yml";
+    String PROVISIONING_SERVICE_PROP_PATH = "/opt/datalab/conf/provisioning.yml";
 
     String BILLING_SERVICE = "billing.yml";
-    //    String BILLING_SERVICE_PROP_PATH = "/opt/datalab/conf/billing.yml";
+    String BILLING_SERVICE_PROP_PATH = "/opt/datalab/conf/billing.yml";
     //    String BILLING_SERVICE_PROP_PATH = "services/billing-gcp/billing.yml";
     //      String BILLING_SERVICE_PROP_PATH = "services/billing-azure/billing.yml";
-    String BILLING_SERVICE_PROP_PATH = "services/billing-aws/billing.yml";
+//    String BILLING_SERVICE_PROP_PATH = "services/billing-aws/billing.yml";
     String GKE_BILLING_PATH = "/root/billing.yaml";
     String GKE_BILLING_SERVICE = "billing.yml";
     String RESTART_URL = "config/restart";
diff --git a/services/datalab-webapp-common/src/main/java/com/epam/datalab/properties/ChangePropertiesService.java b/services/datalab-webapp-common/src/main/java/com/epam/datalab/properties/ChangePropertiesService.java
index 80b000a..b45cfa6 100644
--- a/services/datalab-webapp-common/src/main/java/com/epam/datalab/properties/ChangePropertiesService.java
+++ b/services/datalab-webapp-common/src/main/java/com/epam/datalab/properties/ChangePropertiesService.java
@@ -54,13 +54,13 @@ public class ChangePropertiesService {
         String oldFile = readFile(serviceName, servicePath);
         try (BufferedWriter writer = new BufferedWriter(new FileWriter(servicePath))) {
             try {
-                //            changeCHMODE(serviceName, servicePath, ChangePropertiesConst.DEFAULT_CHMOD, ChangePropertiesConst.WRITE_CHMOD);
+                changeCHMODE(serviceName, servicePath, ChangePropertiesConst.DEFAULT_CHMOD, ChangePropertiesConst.WRITE_CHMOD);
                 log.info("Trying to overwrite {}, file for path {} :", serviceName, servicePath);
                 writer.write(addLicence());
                 writer.write(checkAndReplaceSecretIfEmpty(newPropFile, oldFile));
                 log.info("{} overwritten successfully", serviceName);
                 writer.close();
-                //            changeCHMODE(serviceName, servicePath, ChangePropertiesConst.WRITE_CHMOD, ChangePropertiesConst.DEFAULT_CHMOD);
+                changeCHMODE(serviceName, servicePath, ChangePropertiesConst.WRITE_CHMOD, ChangePropertiesConst.DEFAULT_CHMOD);
             } catch (Exception e) {
                 log.error("Failed during overwriting {}", serviceName);
                 writer.write(oldFile);

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