You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by ud...@apache.org on 2014/03/05 05:35:56 UTC

[1/3] git commit: Showing new UI URL when stratos is setup

Repository: incubator-stratos
Updated Branches:
  refs/heads/master 93ea71a6c -> 0c621fbc0


Showing new UI URL when stratos is setup


Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/da3ab731
Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/da3ab731
Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/da3ab731

Branch: refs/heads/master
Commit: da3ab731ff7093cf0a0f0dc69406a5974bc9ce85
Parents: d926386
Author: Udara Liyanage <ud...@wso2.com>
Authored: Tue Mar 4 23:30:05 2014 -0500
Committer: Udara Liyanage <ud...@wso2.com>
Committed: Tue Mar 4 23:30:05 2014 -0500

----------------------------------------------------------------------
 tools/stratos-installer/setup.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/da3ab731/tools/stratos-installer/setup.sh
----------------------------------------------------------------------
diff --git a/tools/stratos-installer/setup.sh b/tools/stratos-installer/setup.sh
index e0e3a1b..6810df9 100755
--- a/tools/stratos-installer/setup.sh
+++ b/tools/stratos-installer/setup.sh
@@ -653,7 +653,7 @@ su - $host_user -c "source $setup_dir/conf/setup.conf;$setup_dir/start-servers.s
 echo "Servers started. Please look at $LOG file for server startup details"
 if [[ $sm == "true" ]]; then
     echo "**************************************************************"
-    echo "Management Console : https://$stratos_domain:$sm_https_port/"
+    echo "Management Console : https://$stratos_domain:$sm_https_port/console"
     echo "**************************************************************"
 fi
 


[3/3] git commit: Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-stratos

Posted by ud...@apache.org.
Merge branch 'master' of https://git-wip-us.apache.org/repos/asf/incubator-stratos


Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/0c621fbc
Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/0c621fbc
Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/0c621fbc

Branch: refs/heads/master
Commit: 0c621fbc01b2eef266f665175ccd26c14d19e761
Parents: f5eeba5 93ea71a
Author: Udara Liyanage <ud...@wso2.com>
Authored: Tue Mar 4 23:33:33 2014 -0500
Committer: Udara Liyanage <ud...@wso2.com>
Committed: Tue Mar 4 23:33:33 2014 -0500

----------------------------------------------------------------------
 .../cloud/controller/CloudControllerClient.java |  69 +-
 .../exception/InvalidPartitionException.java    |   8 +
 .../exception/InvalidPolicyException.java       |   8 +-
 .../exception/NonExistingLBException.java       |  13 +-
 .../exception/PartitionValidationException.java |  18 +-
 .../exception/PolicyValidationException.java    |  14 +-
 .../autoscaler/exception/SpawningException.java |  13 +-
 .../exception/TerminationException.java         |  12 +-
 .../autoscaler/partition/PartitionManager.java  |   8 +-
 .../stratos/cli/RestCommandLineService.java     |  51 +-
 .../InvalidCartridgeDefinitionException.java    |  13 +-
 .../InvalidCartridgeTypeException.java          |  13 +-
 .../exception/InvalidClusterException.java      |  13 +-
 .../exception/InvalidHostException.java         |  13 +-
 .../exception/InvalidIaasProviderException.java |  13 +-
 .../exception/InvalidMemberException.java       |  13 +-
 .../exception/InvalidPartitionException.java    |  11 +-
 .../exception/InvalidRegionException.java       |  11 +
 .../exception/InvalidXMLException.java          |  11 +
 .../exception/InvalidZoneException.java         |  11 +
 .../MalformedConfigurationFileException.java    |  10 +
 .../exception/NoInstanceFoundException.java     |  11 +
 .../exception/SerializationException.java       |  11 +
 .../UnregisteredCartridgeException.java         |  11 +
 .../exception/UnregisteredClusterException.java |  10 +
 .../cloud/controller/iaases/AWSEC2Iaas.java     |  10 +-
 .../impl/CloudControllerServiceImpl.java        | 233 +------
 .../interfaces/CloudControllerService.java      |  21 +-
 .../util/CloudControllerConstants.java          |   1 +
 .../validate/AWSEC2PartitionValidator.java      |   2 +-
 .../OpenstackNovaPartitionValidator.java        |   2 +-
 .../partials/configure_stratos_wizard.hbs       |  12 +-
 .../manager/client/AutoscalerServiceClient.java | 268 +++-----
 .../client/CloudControllerServiceClient.java    |  61 +-
 .../service/ServiceDeploymentManager.java       |   5 +-
 .../UnregisteredCartridgeException.java         |   6 +
 .../manager/CartridgeSubscriptionManager.java   |   7 +-
 .../CompleteTopologyMessageProcessor.java       |  27 +-
 .../rest/endpoint/services/ServiceUtils.java    | 407 +++++++----
 .../src/main/resources/AutoScalerService.wsdl   | 678 ++++++++++---------
 .../pom.xml                                     |   2 +-
 .../main/resources/CloudControllerService.wsdl  |  96 ++-
 tools/puppet3-agent/config.sh                   |   3 +-
 43 files changed, 1219 insertions(+), 1011 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/0c621fbc/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/services/ServiceUtils.java
----------------------------------------------------------------------


[2/3] git commit: repository username is wrongly set in private repo

Posted by ud...@apache.org.
repository username is wrongly set in private repo


Project: http://git-wip-us.apache.org/repos/asf/incubator-stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-stratos/commit/f5eeba54
Tree: http://git-wip-us.apache.org/repos/asf/incubator-stratos/tree/f5eeba54
Diff: http://git-wip-us.apache.org/repos/asf/incubator-stratos/diff/f5eeba54

Branch: refs/heads/master
Commit: f5eeba546029ee2b71dc97a1be6d53e668dc1674
Parents: da3ab73
Author: Udara Liyanage <ud...@wso2.com>
Authored: Tue Mar 4 23:32:28 2014 -0500
Committer: Udara Liyanage <ud...@wso2.com>
Committed: Tue Mar 4 23:32:28 2014 -0500

----------------------------------------------------------------------
 .../org/apache/stratos/rest/endpoint/services/ServiceUtils.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-stratos/blob/f5eeba54/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/services/ServiceUtils.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/services/ServiceUtils.java b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/services/ServiceUtils.java
index f882461..a4c5532 100644
--- a/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/services/ServiceUtils.java
+++ b/components/org.apache.stratos.rest.endpoint/src/main/java/org/apache/stratos/rest/endpoint/services/ServiceUtils.java
@@ -895,7 +895,7 @@ public class ServiceUtils {
         subscriptionData.setTenantAdminUsername(tenantUsername);
         subscriptionData.setRepositoryType("git");
         subscriptionData.setRepositoryURL(cartridgeInfoBean.getRepoURL());
-        subscriptionData.setRepositoryUsername(cartridgeInfoBean.getRepoURL());
+        subscriptionData.setRepositoryUsername(cartridgeInfoBean.getRepoUsername());
         subscriptionData.setRepositoryPassword(cartridgeInfoBean.getRepoPassword());
 
         Properties properties = new Properties();