You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@dlab.apache.org by an...@apache.org on 2019/07/25 14:26:31 UTC

[incubator-dlab] branch DLAB-929 updated (0777e30 -> 4c29ee9)

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

ankovalyshyn pushed a change to branch DLAB-929
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git.


    from 0777e30  [DLAB-929]: added extra check to template selection
     add 44fcee0  [DLAB-814]: updated quota controls
     add 7d8daa0  [DLAB-814]: updated quota controls
     add 35d430d  [DLAB-814]: updated quota controls; projects form fixes
     add 2f35441  Merge branch 'develop' of github.com:apache/incubator-dlab into DLAB-814
     add 1514dd2  [DLAB-814]: updated api calls; set quota per project
     add cb91c41  [DLAB-814]: updated name project pataneter in quota form
     add bfe3770  [DLAB-935]: groups aligning fixes on confirmation dialog
     add 86ddec2  [DLAB-930]: added filter matches message
     add 7bf3334  Merge pull request #187 from apache/DLAB-814
     add 8cebe04  DLAB-000 added meta info
     new 29f34d6  Merge branch 'develop' of github.com:apache/incubator-dlab into DLAB-929
     new 4c29ee9  [DLAB-943]: fixed passing resources parameters on stop/terminatee actions

The 2 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.


Summary of changes:
 .../impl/InfrastructureInfoServiceBase.java        |  6 +--
 .../manage-environment-dilog.component.html        | 41 ++++++++++------
 .../manage-environment-dilog.component.ts          | 19 ++++----
 .../management/management.component.ts             | 25 +++++-----
 .../app/administration/roles/roles.component.ts    |  2 +-
 .../services/applicationServiceFacade.service.ts   | 14 +++---
 .../src/app/core/services/healthStatus.service.ts  | 56 ++++++++++------------
 .../src/app/core/services/project.service.ts       |  9 ++++
 .../resources-grid/resources-grid.component.html   | 13 +++--
 .../resources-grid/resources-grid.component.ts     | 14 +++---
 10 files changed, 108 insertions(+), 91 deletions(-)


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


[incubator-dlab] 01/02: Merge branch 'develop' of github.com:apache/incubator-dlab into DLAB-929

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

ankovalyshyn pushed a commit to branch DLAB-929
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 29f34d69f1eecc1efe316f62c9a2a32c5179373a
Merge: 0777e30 8cebe04
Author: Andriana Kovalyshyn <An...@epam.com>
AuthorDate: Thu Jul 25 14:32:09 2019 +0300

    Merge branch 'develop' of github.com:apache/incubator-dlab into DLAB-929

 .../impl/InfrastructureInfoServiceBase.java        |  6 +--
 .../manage-environment-dilog.component.html        | 41 ++++++++++------
 .../manage-environment-dilog.component.ts          | 19 ++++----
 .../management/management.component.ts             | 21 ++++----
 .../app/administration/roles/roles.component.ts    |  2 +-
 .../services/applicationServiceFacade.service.ts   | 14 +++---
 .../src/app/core/services/healthStatus.service.ts  | 56 ++++++++++------------
 .../src/app/core/services/project.service.ts       |  9 ++++
 .../resources-grid/resources-grid.component.html   | 13 +++--
 .../resources-grid/resources-grid.component.ts     | 14 +++---
 10 files changed, 106 insertions(+), 89 deletions(-)


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


[incubator-dlab] 02/02: [DLAB-943]: fixed passing resources parameters on stop/terminatee actions

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

ankovalyshyn pushed a commit to branch DLAB-929
in repository https://gitbox.apache.org/repos/asf/incubator-dlab.git

commit 4c29ee970e2ba46e632afefca1283b51b506815c
Author: Andriana Kovalyshyn <An...@epam.com>
AuthorDate: Thu Jul 25 17:26:21 2019 +0300

    [DLAB-943]: fixed passing resources parameters on stop/terminatee actions
---
 .../webapp/src/app/administration/management/management.component.ts  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/services/self-service/src/main/resources/webapp/src/app/administration/management/management.component.ts b/services/self-service/src/main/resources/webapp/src/app/administration/management/management.component.ts
index 326fda3..28064cb 100644
--- a/services/self-service/src/main/resources/webapp/src/app/administration/management/management.component.ts
+++ b/services/self-service/src/main/resources/webapp/src/app/administration/management/management.component.ts
@@ -78,8 +78,8 @@ export class ManagementComponent implements OnInit {
       .environmentManagement(
         $event.environment.user,
         $event.action,
-        $event.environment.type === 'edge node' ? 'edge' : $event.environment.resource_name,
-        $event.resources ? $event.resources.computational_name : null
+        $event.environment.type === 'edge node' ? 'edge' : $event.environment.name,
+        $event.resource ? $event.resource.computational_name : null
       ).subscribe(
         () => this.buildGrid(),
         error => this.toastr.error('Environment management failed!', 'Oops!'));


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