[incubator-servicecomb-service-center] branch master updated: SCB-851 Can not get providers if consumer have * dependency rule (#421)

2018-08-20 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 601fe32  SCB-851 Can not get providers if consumer have * dependency 
rule (#421)
601fe32 is described below

commit 601fe32ce50ee65a11ddd071fd6ee33d23a6f576
Author: little-cui 
AuthorDate: Mon Aug 20 22:16:58 2018 +0800

SCB-851 Can not get providers if consumer have * dependency rule (#421)
---
 server/service/dependency_test.go   | 47 +++--
 server/service/util/dependency_query.go |  2 +-
 2 files changed, 46 insertions(+), 3 deletions(-)

diff --git a/server/service/dependency_test.go 
b/server/service/dependency_test.go
index b1bfcbc..497b86c 100644
--- a/server/service/dependency_test.go
+++ b/server/service/dependency_test.go
@@ -32,6 +32,7 @@ var _ = Describe("'Dependency' service", func() {
var (
consumerId1 string
consumerId2 string
+   consumerId3 string
)
 
It("should be passed", func() {
@@ -50,6 +51,19 @@ var _ = Describe("'Dependency' service", func() {
 
respCreateService, err = 
serviceResource.Create(getContext(), &pb.CreateServiceRequest{
Service: &pb.MicroService{
+   AppId:   "create_dep_group",
+   ServiceName: "create_dep_consumer_all",
+   Version: "1.0.0",
+   Level:   "FRONT",
+   Status:  pb.MS_UP,
+   },
+   })
+   Expect(err).To(BeNil())
+   
Expect(respCreateService.Response.Code).To(Equal(pb.Response_SUCCESS))
+   consumerId3 = respCreateService.ServiceId
+
+   respCreateService, err = 
serviceResource.Create(getContext(), &pb.CreateServiceRequest{
+   Service: &pb.MicroService{
Environment: pb.ENV_PROD,
AppId:   "create_dep_group",
ServiceName: "create_dep_consumer",
@@ -443,7 +457,11 @@ var _ = Describe("'Dependency' service", func() {
respCreateDependency, err = 
serviceResource.CreateDependenciesForMicroServices(getContext(), 
&pb.CreateDependenciesRequest{
Dependencies: []*pb.ConsumerDependency{
{
-   Consumer: consumer,
+   Consumer: 
&pb.MicroServiceKey{
+   ServiceName: 
"create_dep_consumer_all",
+   AppId:   
"create_dep_group",
+   Version: 
"1.0.0",
+   },
Providers: 
[]*pb.MicroServiceKey{
{

ServiceName: "*",
@@ -455,6 +473,31 @@ var _ = Describe("'Dependency' service", func() {
Expect(err).To(BeNil())

Expect(respCreateDependency.Response.Code).To(Equal(pb.Response_SUCCESS))
 
+   Expect(deh.Handle()).To(BeNil())
+
+   respPro, err = 
serviceResource.GetConsumerDependencies(getContext(), 
&pb.GetDependenciesRequest{
+   ServiceId: consumerId3,
+   })
+   Expect(err).To(BeNil())
+   
Expect(respPro.Response.Code).To(Equal(pb.Response_SUCCESS))
+   Expect(len(respPro.Providers)).ToNot(Equal(0))
+
+   By("clean all")
+   respCreateDependency, err = 
serviceResource.CreateDependenciesForMicroServices(getContext(), 
&pb.CreateDependenciesRequest{
+   Dependencies: []*pb.ConsumerDependency{
+   {
+ 

[incubator-servicecomb-service-center] branch master updated: Extend the admin dump api (#420)

2018-08-20 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 9f55487  Extend the admin dump api (#420)
9f55487 is described below

commit 9f55487b6ed2a256a5d66fe028c4e986961921e9
Author: little-cui 
AuthorDate: Mon Aug 20 22:18:15 2018 +0800

Extend the admin dump api (#420)
---
 pkg/chain/callback.go| 10 +--
 pkg/chain/chain.go   | 15 --
 pkg/chain/chain_test.go  | 34 -
 pkg/chain/invocation.go  | 11 +++
 server/admin/model/dump.go   |  8 +++--
 server/admin/service.go  | 22 --
 server/core/swagger/v4.yaml  | 45 
 server/rest/controller/v4/main_controller.go | 21 ++---
 8 files changed, 105 insertions(+), 61 deletions(-)

diff --git a/pkg/chain/callback.go b/pkg/chain/callback.go
index e48e16a..27e10c7 100644
--- a/pkg/chain/callback.go
+++ b/pkg/chain/callback.go
@@ -47,19 +47,11 @@ type Callback struct {
 func (cb *Callback) Invoke(r Result) {
if cb.Async {
pool.Do(func(_ context.Context) {
-   cb.syncInvoke(r)
+   cb.Func(r)
})
return
}
-   cb.syncInvoke(r)
-}
-
-func (cb *Callback) syncInvoke(r Result) {
defer log.Recover()
-   if cb.Func == nil {
-   log.Errorf(nil, "Callback function is nil. result: %s,", r)
-   return
-   }
cb.Func(r)
 }
 
diff --git a/pkg/chain/chain.go b/pkg/chain/chain.go
index 51441fe..a1ddd30 100644
--- a/pkg/chain/chain.go
+++ b/pkg/chain/chain.go
@@ -16,11 +16,6 @@
  */
 package chain
 
-import (
-   errorsEx 
"github.com/apache/incubator-servicecomb-service-center/pkg/errors"
-   "github.com/apache/incubator-servicecomb-service-center/pkg/log"
-)
-
 type Chain struct {
name string
handlers []Handler
@@ -38,16 +33,6 @@ func (c *Chain) Name() string {
 }
 
 func (c *Chain) syncNext(i *Invocation) {
-   defer func() {
-   itf := recover()
-   if itf == nil {
-   return
-   }
-   log.LogPanic(itf)
-
-   i.Fail(errorsEx.RaiseError(itf))
-   }()
-
if c.currentIndex >= len(c.handlers)-1 {
i.Success()
return
diff --git a/pkg/chain/chain_test.go b/pkg/chain/chain_test.go
index d053a81..bb617ed 100644
--- a/pkg/chain/chain_test.go
+++ b/pkg/chain/chain_test.go
@@ -21,11 +21,12 @@ import (
"errors"
"github.com/apache/incubator-servicecomb-service-center/pkg/util"
"testing"
+   "time"
 )
 
 const (
times = 100
-   count = 100
+   count = 10
 )
 
 func init() {
@@ -73,26 +74,13 @@ func BenchmarkChain(b *testing.B) {
 
b.N = times
b.ResetTimer()
-   b.RunParallel(func(pb *testing.PB) {
-   for pb.Next() {
-   inv := NewInvocation(ctx, NewChain("_bench_chain_", 
Handlers("_bench_handlers_")))
-   inv.Invoke(f)
-   }
-   })
-   b.ReportAllocs()
-   // 1006607 ns/op  80 B/op  1 
allocs/op
-}
+   for i := 0; i < b.N; i++ {
+   inv := NewInvocation(ctx, NewChain("_bench_chain_", 
Handlers("_bench_handlers_")))
+   inv.Invoke(f)
 
-func BenchmarkSync(b *testing.B) {
-   b.N = times
-   b.ResetTimer()
-   b.RunParallel(func(pb *testing.PB) {
-   for pb.Next() {
-   syncFunc(0)
-   }
-   })
+   }
b.ReportAllocs()
-   // 100  46.9 ns/op 0 B/op  0 
allocs/op
+   // 100 735 ns/op  80 B/op  1 
allocs/op
 }
 
 type mockHandler struct {
@@ -112,7 +100,8 @@ func (h *mockHandler) Handle(i *Invocation) {
case 4:
i.Next(WithAsyncFunc(func(r Result) {
i.WithContext("x", x*x)
-   i.Context().Value("ch").(chan struct{}) <- struct{}{}
+   ch, _ := i.Context().Value("ch").(chan struct{})
+   ch <- struct{}{}
}))
case 5:
panic(errors.New("error"))
@@ -181,7 +170,7 @@ func TestChain_Next(t *testing.T) {
t.Fatalf("TestChain_Next")
}
 
-   x = 4
+   x = 4 // async call back
ch = NewChain("test", hs)
i = NewInvocation(context

[incubator-servicecomb-service-center] branch master updated: SCB-857 Provider rule of consumer can not be removed (#429)

2018-08-23 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 77ae91e  SCB-857 Provider rule of consumer can not be removed (#429)
77ae91e is described below

commit 77ae91e5adc580861358a814096dd0f824073dc5
Author: little-cui 
AuthorDate: Thu Aug 23 15:51:13 2018 +0800

SCB-857 Provider rule of consumer can not be removed (#429)
---
 server/service/util/dependency_util.go | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/server/service/util/dependency_util.go 
b/server/service/util/dependency_util.go
index 288aeea..0041130 100644
--- a/server/service/util/dependency_util.go
+++ b/server/service/util/dependency_util.go
@@ -444,13 +444,13 @@ loop:
continue loop
}
 
-   id := 
apt.GenerateProviderDependencyRuleKey(domainProject, key)
+   id := apt.GenerateProviderDependencyRuleKey(key.Tenant, 
key)
exist, ok := cache[id]
if !ok {
_, exist, err = FindServiceIds(ctx, 
key.Version, key)
if err != nil {
return nil, fmt.Errorf("%v, find 
service %s/%s/%s/%s",
-   err, domainProject, key.AppId, 
key.ServiceName, key.Version)
+   err, key.Tenant, key.AppId, 
key.ServiceName, key.Version)
}
cache[id] = exist
}
@@ -497,7 +497,7 @@ func removeProviderRuleKeys(ctx context.Context, 
domainProject string, cache map
_, exist, err = FindServiceIds(ctx, key.Version, key)
if err != nil {
return nil, fmt.Errorf("find service 
%s/%s/%s/%s, %v",
-   domainProject, key.AppId, 
key.ServiceName, key.Version, err)
+   key.Tenant, key.AppId, key.ServiceName, 
key.Version, err)
}
cache[id] = exist
}



[incubator-servicecomb-service-center] branch master updated: [SCB-809]Verify the chinese version of the UI (#431)

2018-08-28 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new f9bfa85  [SCB-809]Verify the chinese version of the UI (#431)
f9bfa85 is described below

commit f9bfa859de09c071b5303e98cefc8bc13a559a88
Author: xiaoyimei <38858721+xiaoyi...@users.noreply.github.com>
AuthorDate: Tue Aug 28 21:07:08 2018 +0800

[SCB-809]Verify the chinese version of the UI (#431)

* [SCB-809]Verify the chinese version of the UI as all chinese text was 
translated using Google Translate
---
 frontend/app/scripts/languages/locale-cz.js | 18 +-
 1 file changed, 9 insertions(+), 9 deletions(-)

diff --git a/frontend/app/scripts/languages/locale-cz.js 
b/frontend/app/scripts/languages/locale-cz.js
index 968d404..7f8c658 100644
--- a/frontend/app/scripts/languages/locale-cz.js
+++ b/frontend/app/scripts/languages/locale-cz.js
@@ -33,7 +33,7 @@ angular.module('serviceCenter')
 "status": "状态",
 "appId": "应用",
 "version": "版本",
-"createdAt": "创建于",
+"createdAt": "创建时间",
 "address": "地址",
 "refresh": "刷新",
 "close": "关闭",
@@ -57,7 +57,7 @@ angular.module('serviceCenter')
 "noSchemaFilesExists": "契约文件不存在",
 "instances": "实例",
 "operations": "操作",
-"noDataFound": "没有找到数据",
+"noDataFound": "找不到数据",
 "noSchemaFound": "找不到契约",
 "schemaTest": "契约测试",
 "schemes": "契约",
@@ -81,24 +81,24 @@ angular.module('serviceCenter')
 "next": "下一步",
 "noSchemaAvailableToDownload": "没有可用契约",
 "download": "下载",
-"downloadAll": "全部下载",
-"alert": "警报",
+"downloadAll": "下载全部",
+"alert": "告警",
 "delete": "删除",
 "warning": "警告",
 "prompt": "提示",
-"areYouSureToDelete": "你确定删除吗?",
+"areYouSureToDelete": "确定要删除吗?",
 "cannotDeleteServiceWhenInstanceIsAvailable": "实例可用时无法删除服务",
-"serviceDeletedSuccessfully": "服务已成功删除",
-"unableToDeleteService": "无法删除服务 再试一次",
+"serviceDeletedSuccessfully": "删除服务成功",
+"unableToDeleteService": "删除服务失败,请再试一次",
 "back": "返回",
-"highwayErr": "Highway目前不受支持",
+"highwayErr": "暂不支持Highway",
 "noInstanceTip": "实例不可用",
 "topology": "拓扑",
 "userGuide": {
 "title": "用户指南",
 "developServiceProvider": "如何开发服务提供商?",
 "developServiceConsumer": "如何发展服务消费者?",
-"instanceUnregister": "实例何时从服务中心取消注册?"
+"instanceUnregister": "实例何时从服务中心注销?"
 },
 "viewMoreInfo": "查看更多信息"
 });
\ No newline at end of file



[incubator-servicecomb-service-center] branch master updated: [SCB-808]Aut-refresh the dashboard and service-list page every 10sec (#430)

2018-08-28 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 80ee70a  [SCB-808]Aut-refresh the dashboard and service-list page 
every 10sec (#430)
80ee70a is described below

commit 80ee70a8f01078c441e153915f1b07d0d382225d
Author: xiaoyimei <38858721+xiaoyi...@users.noreply.github.com>
AuthorDate: Tue Aug 28 21:08:19 2018 +0800

[SCB-808]Aut-refresh the dashboard and service-list page every 10sec (#430)
---
 .../scripts/modules/dashboard/controllers/dashboardCtrl.js   |  7 +++
 .../modules/serviceCenter/controllers/servicesListCtrl.js| 12 ++--
 2 files changed, 17 insertions(+), 2 deletions(-)

diff --git 
a/frontend/app/scripts/modules/dashboard/controllers/dashboardCtrl.js 
b/frontend/app/scripts/modules/dashboard/controllers/dashboardCtrl.js
index ead2f05..ba2541f 100644
--- a/frontend/app/scripts/modules/dashboard/controllers/dashboardCtrl.js
+++ b/frontend/app/scripts/modules/dashboard/controllers/dashboardCtrl.js
@@ -163,4 +163,11 @@ angular.module('serviceCenter.dashboard', [])
 
 $scope.getAllServices();
 
+var dashboardRefresh = $interval(function(){
+$scope.getAllServices();
+}, 1);
+ 
+$scope.$on('$destroy', function(){
+$interval.cancel(dashboardRefresh);
+})
 }]);
\ No newline at end of file
diff --git 
a/frontend/app/scripts/modules/serviceCenter/controllers/servicesListCtrl.js 
b/frontend/app/scripts/modules/serviceCenter/controllers/servicesListCtrl.js
index ab449c7..50e5f21 100644
--- a/frontend/app/scripts/modules/serviceCenter/controllers/servicesListCtrl.js
+++ b/frontend/app/scripts/modules/serviceCenter/controllers/servicesListCtrl.js
@@ -16,8 +16,8 @@
  */
 'use strict';
 angular.module('serviceCenter.sc', [])
-.controller('servicesListController', ['$scope', 'httpService', 
'apiConstant', 'commonService', '$stateParams', '$mdDialog',
-function($scope, httpService, apiConstant, commonService, 
$stateParams, $mdDialog) {
+.controller('servicesListController', ['$scope', 'httpService', 
'apiConstant', 'commonService', '$stateParams', '$mdDialog', '$interval',
+function($scope, httpService, apiConstant, commonService, 
$stateParams, $mdDialog, $interval) {
 
 $scope.appList = 'fetching';
 $scope.serviceList = 'serviceList';
@@ -153,6 +153,14 @@ angular.module('serviceCenter.sc', [])
 };
 $scope.getAllServices();
 
+var serviceRefresh = $interval(function(){
+$scope.getAllServices();
+}, 1);
+ 
+$scope.$on('$destroy', function(){
+$interval.cancel(serviceRefresh);
+})
+
 function processService(service) {
 var instanceApi = apiConstant.api.instances.url;
 var instanceUrl = instanceApi.replace("{{serviceId}}", 
service.serviceId);



[incubator-servicecomb-service-center] branch master updated: [SCB-807]Limit the topology view to only 100 microservices. (#428)

2018-08-28 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 7cf1790  [SCB-807]Limit the topology view to only 100 microservices. 
(#428)
7cf1790 is described below

commit 7cf1790796dee1b79504528b474ff1c56b3501bc
Author: xiaoyimei <38858721+xiaoyi...@users.noreply.github.com>
AuthorDate: Tue Aug 28 21:09:19 2018 +0800

[SCB-807]Limit the topology view to only 100 microservices. (#428)

* [SCB-812]Change the readme under the frontend folder

* Modified README according to yangbor's suggestion

* Modified README according to yangbor's suggestion

* [SCB-807]Limit the topology view to only 100 microservices.

* Limit the topology view to only 100 microservices.
---
 frontend/Readme.md   | 12 +++-
 .../app/scripts/modules/topology/controllers/topologyCtrl.js |  9 ++---
 2 files changed, 17 insertions(+), 4 deletions(-)

diff --git a/frontend/Readme.md b/frontend/Readme.md
index 77e6f85..dde0dc7 100644
--- a/frontend/Readme.md
+++ b/frontend/Readme.md
@@ -39,7 +39,17 @@ bower install
 
 cd ..
 
-go run main.go
+go build
+
+```
+Windows:
+```
+frontend.exe
+```
+
+Linux:
+```sh
+./frontend
 ```
 This will bring up the Service-Center UI on 
[http://127.0.0.1:30103](http://127.0.0.1:30103).
 If you want to change the listening ip/port, you can modify it in the 
configuration file (service-center/frontend/conf/app.conf : frontend_host_ip, 
frontend_host_port).
diff --git a/frontend/app/scripts/modules/topology/controllers/topologyCtrl.js 
b/frontend/app/scripts/modules/topology/controllers/topologyCtrl.js
index d7da995..b7b7624 100644
--- a/frontend/app/scripts/modules/topology/controllers/topologyCtrl.js
+++ b/frontend/app/scripts/modules/topology/controllers/topologyCtrl.js
@@ -30,15 +30,18 @@ angular.module('serviceCenter.topology', [])
 httpService.apiRequest(url, method).then(function(response) {
 $(".loader").hide();
 if (response && response.data && 
response.data.allServicesDetail && response.data.allServicesDetail.length > 0) {
-$scope.allAppId.push("All");
-$scope.appId = appId ? appId : "All";
 $scope.allServicesDetail = response.data.allServicesDetail;
-
 angular.forEach(response.data.allServicesDetail, 
function(service) {
 if 
(!$scope.allAppId.includes(service.microService.appId) && 
service.microService.serviceName.toLowerCase() !== 'servicecenter') {
 $scope.allAppId.push(service.microService.appId);
 }
 });
+if ($scope.allServicesDetail.length > 100){
+$scope.appId = $scope.allAppId[0];
+} else {
+$scope.allAppId.push("All");
+$scope.appId = appId ? appId : "All";
+}
 
 if ($scope.appId === "All") {
 $scope.microServices = [];



[incubator-servicecomb-service-center] branch master updated: SCB-869 SC cli tool (#432)

2018-09-03 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 629b44a  SCB-869 SC cli tool (#432)
629b44a is described below

commit 629b44af670e1a21b7e59ad61dcdb453ed86c623
Author: little-cui 
AuthorDate: Tue Sep 4 14:56:44 2018 +0800

SCB-869 SC cli tool (#432)

* SCB-869 SC cli tool

* Add version cmd

* Add README

* Add build scripts
---
 README.md  |   2 +-
 docs/README.md |   5 +-
 glide.yaml |   5 +
 pkg/client/etcd/client.go  |  66 
 pkg/client/sc/apis.go  |  93 ++
 pkg/client/sc/client.go|  51 +++
 pkg/rest/client.go | 346 -
 pkg/rest/common.go |   2 +
 pkg/util/sys.go|   8 +
 pkg/util/util_test.go  |  16 +
 scctl/README.md|  47 +++
 scctl/bootstrap/bootstrap.go   |  21 ++
 scctl/main.go  |  25 ++
 scctl/pkg/cmd/cmd.go   |  98 ++
 scctl/pkg/cmd/help.go  | 169 ++
 scctl/pkg/model/types.go   | 122 
 scctl/pkg/plugin/README.md | 107 +++
 scctl/pkg/plugin/diagnose/cmd.go   |  57 
 scctl/pkg/plugin/diagnose/compare_holder.go| 168 ++
 scctl/pkg/plugin/diagnose/compare_holder_test.go   |  51 +++
 scctl/pkg/plugin/diagnose/diagnose.go  | 176 +++
 scctl/pkg/plugin/diagnose/diagnose_test.go |  66 
 scctl/pkg/plugin/get/cmd.go|  45 +++
 scctl/pkg/plugin/get/instance/instance_cmd.go  |  95 ++
 scctl/pkg/plugin/get/instance/types.go | 118 +++
 scctl/pkg/plugin/get/service/service_cmd.go|  95 ++
 scctl/pkg/plugin/get/service/types.go  | 112 +++
 scctl/pkg/plugin/version/cmd.go|  62 
 pkg/util/sys.go => scctl/pkg/version/version.go|  57 +---
 scctl/pkg/writer/writer.go |  67 
 scripts/build/tools.sh |  27 +-
 scripts/release/LICENSE|   7 +
 .../licenses/LICENSE-olekukonko-tablewriter|  19 ++
 scripts/release/make_release.sh|   2 +
 version/version.go |  26 +-
 35 files changed, 2156 insertions(+), 277 deletions(-)

diff --git a/README.md b/README.md
index b20813e..8bd99ca 100644
--- a/README.md
+++ b/README.md
@@ -20,7 +20,7 @@ Apache ServiceComb (incubating) Service-Center is a Restful 
based service-regist
  
 ## Documentation
 
-Project documentation is available on the [ServiceComb 
website][servicecomb-website]. You can also find some development guide 
[here](/docs).
+Project documentation is available on the [ServiceComb 
website][servicecomb-website]. You can also find full document [`here`](/docs).
 
 [servicecomb-website]: http://servicecomb.incubator.apache.org/
 
diff --git a/docs/README.md b/docs/README.md
index ba6aef1..9f113cf 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -5,13 +5,12 @@
  [Development Guide](/docs/dev-guide.md) 
 
 - [Api 
Documentation](https://rawcdn.githack.com/ServiceComb/service-center/master/docs/api-docs.html)
-
 - [Plug-in Extension](/server/plugin/README.md)
+- [Command Line Client](/scctl/README.md)
 
  [Docker Image Guide](/scripts/docker) 
 
 - [Making Service-Center Image](/scripts/docker/build-image)
-
 - [Making Front-end Image](/scripts/docker/build-frontend-image)
 
  Deploy Service-Center Locally
@@ -21,9 +20,7 @@
  Deploy Service-Center Cluster
 
 - [In Kubernetes Cluster](/integration/k8s)
-
 - [In VMs](/docs/sc-cluster.md)
-
 - [Deploy with TLS](/docs/security-tls.md)
 
  Monitoring Service-Center
diff --git a/glide.yaml b/glide.yaml
index 8051f71..55bbdb1 100644
--- a/glide.yaml
+++ b/glide.yaml
@@ -289,3 +289,8 @@ import:
 - package: github.com/natefinch/lumberjack
   version: a96e63847dc3c67d17befa69c303767e2f84e54f
   repo: https://github.com/natefinch/lumberjack
+
+# scctl depends
+- package: github.com/olekukonko/tablewriter
+  version: d4647c9c7a84d847478d890b816b7d8b62b0b279
+  repo: https://github.com/olekukonko/tablewriter
diff --git a/pkg/client/etcd/client.go b/pkg/client/etcd/client.go
new file mode 100644
index 000..d7a5f0b
--- /dev/null
+++ b/pkg/client/etcd/client.go
@@ -0,0 +1,66 @@
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor lice

[incubator-servicecomb-service-center] branch master updated: SCB-890 Lost changed event when bootstrap with embedded etcd (#435)

2018-09-04 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 9fc039b  SCB-890 Lost changed event when bootstrap with embedded etcd 
(#435)
9fc039b is described below

commit 9fc039bda4e01adb71ae3f78ef3c9c0683228e2f
Author: little-cui 
AuthorDate: Tue Sep 4 19:26:22 2018 +0800

SCB-890 Lost changed event when bootstrap with embedded etcd (#435)
---
 .../infra/registry/embededetcd/embededetcd.go  | 83 --
 1 file changed, 44 insertions(+), 39 deletions(-)

diff --git a/server/plugin/infra/registry/embededetcd/embededetcd.go 
b/server/plugin/infra/registry/embededetcd/embededetcd.go
index 20e7525..4f92853 100644
--- a/server/plugin/infra/registry/embededetcd/embededetcd.go
+++ b/server/plugin/infra/registry/embededetcd/embededetcd.go
@@ -418,35 +418,9 @@ func (s *EtcdEmbed) Watch(ctx context.Context, opts 
...registry.PluginOpOption)
return
}
 
-   l := len(resp.Events)
-   kvs := make([]*mvccpb.KeyValue, l)
-   pIdx, prevAction := 0, mvccpb.PUT
-   pResp := ®istry.PluginResponse{Action: 
registry.Put, Succeeded: true}
-
-   for _, evt := range resp.Events {
-   if prevAction != evt.Type {
-   prevAction = evt.Type
-
-   if pIdx > 0 {
-   err = 
setResponseAndCallback(pResp, kvs[:pIdx], op.WatchCallback)
-   if err != nil {
-   return
-   }
-   pIdx = 0
-   }
-   }
-
-   pResp.Revision = evt.Kv.ModRevision
-   pResp.Action = 
setKvsAndConvertAction(kvs, pIdx, &evt)
-
-   pIdx++
-   }
-
-   if pIdx > 0 {
-   err = setResponseAndCallback(pResp, 
kvs[:pIdx], op.WatchCallback)
-   if err != nil {
-   return
-   }
+   err = dispatch(resp.Events, op.WatchCallback)
+   if err != nil {
+   return
}
}
}
@@ -478,7 +452,39 @@ func (s *EtcdEmbed) readyNotify() {
}
 }
 
-func setKvsAndConvertAction(kvs []*mvccpb.KeyValue, pIdx int, evt 
*mvccpb.Event) registry.ActionType {
+func dispatch(evts []mvccpb.Event, cb registry.WatchCallback) error {
+   l := len(evts)
+   kvs := make([]*mvccpb.KeyValue, l)
+   sIdx, eIdx, rev := 0, 0, int64(0)
+   action, prevEvtType := registry.Put, mvccpb.PUT
+
+   for _, evt := range evts {
+   if prevEvtType != evt.Type {
+   if eIdx > 0 {
+   err := callback(action, rev, kvs[sIdx:eIdx], cb)
+   if err != nil {
+   return err
+   }
+   sIdx = eIdx
+   }
+   prevEvtType = evt.Type
+   }
+
+   if rev < evt.Kv.ModRevision {
+   rev = evt.Kv.ModRevision
+   }
+   action = setKvsAndConvertAction(kvs, eIdx, evt)
+
+   eIdx++
+   }
+
+   if eIdx > 0 {
+   return callback(action, rev, kvs[sIdx:eIdx], cb)
+   }
+   return nil
+}
+
+func setKvsAndConvertAction(kvs []*mvccpb.KeyValue, pIdx int, evt 
mvccpb.Event) registry.ActionType {
switch evt.Type {
case mvccpb.DELETE:
kv := evt.PrevKv
@@ -493,15 +499,14 @@ func setKvsAndConvertAction(kvs []*mvccpb.KeyValue, pIdx 
int, evt *mvccpb.Event)
}
 }
 
-func setResponseAndCallback(pResp *registry.PluginResponse, kvs 
[]*mvccpb.KeyValue, cb registry.WatchCallback) error {
-   pResp.Count = int64(len(kvs))
-   pResp.Kvs = kvs
-
-   err := cb("key information changed", pResp)
-   if err != nil {
-   return err
-   }
-   return nil
+func callback(action registry.ActionType, rev int64, kvs []*mvccpb.KeyValue, 
cb 

[incubator-servicecomb-service-center] branch master updated: SCB-892 Output plugins configs in version api (#436)

2018-09-04 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 7f97881  SCB-892 Output plugins configs in version api (#436)
7f97881 is described below

commit 7f978813003fcd410ada949dbc85094f4c00fde8
Author: little-cui 
AuthorDate: Wed Sep 5 13:17:01 2018 +0800

SCB-892 Output plugins configs in version api (#436)
---
 pkg/util/map.go  |  76 
 pkg/util/map_test.go |  86 ++
 server/admin/model/dump.go   |   2 +-
 server/admin/service.go  |   2 +-
 server/core/config.go|   4 +-
 server/core/microservice.go  |   2 +-
 server/core/proto/common.go  |  93 
 server/core/proto/services.go| 127 +--
 server/core/proto/types.go   |  72 +++
 server/govern/govern_suite_test.go   |   2 +-
 server/govern/service.go |   2 +-
 server/plugin/infra/quota/buildin/buildin.go |   1 +
 server/plugin/infra/quota/buildin/common.go  |  10 +++
 server/plugin/plugin.go  |  28 +-
 server/plugin/plugin_test.go |   9 +-
 server/server.go |   4 +
 server/service/microservice.go   |   2 +-
 server/service/service.go|   4 +-
 server/service/service_suite_test.go |   2 +-
 19 files changed, 388 insertions(+), 140 deletions(-)

diff --git a/pkg/util/map.go b/pkg/util/map.go
new file mode 100644
index 000..f5d8597
--- /dev/null
+++ b/pkg/util/map.go
@@ -0,0 +1,76 @@
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements.  See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License.  You may obtain a copy of the License at
+//
+// http://www.apache.org/licenses/LICENSE-2.0
+//
+// Unless required by applicable law or agreed to in writing, software
+// distributed under the License is distributed on an "AS IS" BASIS,
+// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+// See the License for the specific language governing permissions and
+// limitations under the License.
+
+package util
+
+import (
+   "fmt"
+   "reflect"
+   "strconv"
+)
+
+type JSONObject map[string]interface{}
+
+func (c JSONObject) Set(k interface{}, v interface{}) JSONObject {
+   c[toString(k)] = v
+   return c
+}
+
+func (c JSONObject) Bool(k interface{}, def bool) bool {
+   if v, ok := c[toString(k)].(bool); ok {
+   return v
+   }
+   return def
+}
+
+func (c JSONObject) Int(k interface{}, def int) int {
+   if v, ok := c[toString(k)].(int); ok {
+   return v
+   }
+   return def
+}
+
+func (c JSONObject) String(k interface{}, def string) string {
+   if v, ok := c[toString(k)].(string); ok {
+   return v
+   }
+   return def
+}
+
+func (c JSONObject) Object(k interface{}) JSONObject {
+   key := toString(k)
+   if v, ok := c[key].(JSONObject); ok {
+   return v
+   }
+   v := make(JSONObject)
+   c[key] = v
+   return v
+}
+
+func toString(v interface{}) string {
+   r := reflect.ValueOf(v)
+   switch r.Kind() {
+   case reflect.Int, reflect.Int8, reflect.Int16, reflect.Int32, 
reflect.Int64:
+   return strconv.FormatInt(r.Int(), 10)
+   case reflect.Uint, reflect.Uint8, reflect.Uint16, reflect.Uint32, 
reflect.Uint64:
+   return strconv.FormatUint(r.Uint(), 10)
+   case reflect.Float32, reflect.Float64:
+   return strconv.FormatFloat(r.Float(), 'f', -1, 64)
+   case reflect.String:
+   return r.String()
+   default:
+   return fmt.Sprintf("%#v", v)
+   }
+}
diff --git a/pkg/util/map_test.go b/pkg/util/map_test.go
new file mode 100644
index 000..2e4affe
--- /dev/null
+++ b/pkg/util/map_test.go
@@ -0,0 +1,86 @@
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements.  See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache License, Version 2.0
+// (the "License"); you may not use this file except in compliance with
+// the License.  You may obtain a copy of the License at
+//
+// http://www.apache

[incubator-servicecomb-service-center] branch master updated: SCB-901 Making service registration api idempotent (#439)

2018-09-09 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 8a5e1be  SCB-901 Making service registration api idempotent (#439)
8a5e1be is described below

commit 8a5e1be43de5b5ed98f5ca224c539c59f8e1defe
Author: little-cui 
AuthorDate: Mon Sep 10 01:15:16 2018 +0800

SCB-901 Making service registration api idempotent (#439)
---
 .../infra/registry/embededetcd/embededetcd.go  | 12 
 server/plugin/infra/registry/etcd/etcd.go  | 13 +
 server/plugin/infra/registry/etcd/etcd_test.go | 12 
 server/service/microservice.go | 52 ++---
 server/service/microservice_test.go| 66 --
 5 files changed, 131 insertions(+), 24 deletions(-)

diff --git a/server/plugin/infra/registry/embededetcd/embededetcd.go 
b/server/plugin/infra/registry/embededetcd/embededetcd.go
index 0f40839..c0f1949 100644
--- a/server/plugin/infra/registry/embededetcd/embededetcd.go
+++ b/server/plugin/infra/registry/embededetcd/embededetcd.go
@@ -342,9 +342,21 @@ func (s *EtcdEmbed) TxnWithCmp(ctx context.Context, 
success []registry.PluginOp,
if err != nil {
return nil, err
}
+
+   var rangeResponse etcdserverpb.RangeResponse
+   for _, itf := range resp.Responses {
+   if rr, ok := 
itf.Response.(*etcdserverpb.ResponseOp_ResponseRange); ok {
+   // plz request the same type range kv in txn 
success/fail options
+   rangeResponse.Kvs = append(rangeResponse.Kvs, 
rr.ResponseRange.Kvs...)
+   rangeResponse.Count += rr.ResponseRange.Count
+   }
+   }
+
return ®istry.PluginResponse{
Succeeded: resp.Succeeded,
Revision:  resp.Header.Revision,
+   Kvs:   rangeResponse.Kvs,
+   Count: rangeResponse.Count,
}, nil
 }
 
diff --git a/server/plugin/infra/registry/etcd/etcd.go 
b/server/plugin/infra/registry/etcd/etcd.go
index b567461..dbbfa12 100644
--- a/server/plugin/infra/registry/etcd/etcd.go
+++ b/server/plugin/infra/registry/etcd/etcd.go
@@ -28,6 +28,7 @@ import (
mgr 
"github.com/apache/incubator-servicecomb-service-center/server/plugin"
"github.com/coreos/etcd/clientv3"
"github.com/coreos/etcd/etcdserver/api/v3rpc/rpctypes"
+   "github.com/coreos/etcd/etcdserver/etcdserverpb"
"github.com/coreos/etcd/mvcc/mvccpb"
"golang.org/x/net/context"
"google.golang.org/grpc"
@@ -566,9 +567,21 @@ func (c *EtcdClient) TxnWithCmp(ctx context.Context, 
success []registry.PluginOp
}
log.LogNilOrWarnf(start, "registry client txn {if(%v): %s, then: %d, 
else: %d}, rev: %d",
resp.Succeeded, cmps, len(success), len(fail), 
resp.Header.Revision)
+
+   var rangeResponse etcdserverpb.RangeResponse
+   for _, itf := range resp.Responses {
+   if rr, ok := 
itf.Response.(*etcdserverpb.ResponseOp_ResponseRange); ok {
+   // plz request the same type range kv in txn 
success/fail options
+   rangeResponse.Kvs = append(rangeResponse.Kvs, 
rr.ResponseRange.Kvs...)
+   rangeResponse.Count += rr.ResponseRange.Count
+   }
+   }
+
return ®istry.PluginResponse{
Succeeded: resp.Succeeded,
Revision:  resp.Header.Revision,
+   Kvs:   rangeResponse.Kvs,
+   Count: rangeResponse.Count,
}, nil
 }
 
diff --git a/server/plugin/infra/registry/etcd/etcd_test.go 
b/server/plugin/infra/registry/etcd/etcd_test.go
index 067b713..a6c7c6a 100644
--- a/server/plugin/infra/registry/etcd/etcd_test.go
+++ b/server/plugin/infra/registry/etcd/etcd_test.go
@@ -398,6 +398,18 @@ func TestEtcdClient_Txn(t *testing.T) {
t.Fatalf("TestEtcdClient failed, %#v", err)
}
 
+   // case: range request
+   resp, err = etcd.TxnWithCmp(context.Background(), nil, 
[]registry.CompareOp{
+   {[]byte("/test_txn/c"), registry.CMP_VALUE, registry.CMP_EQUAL, 
"c"},
+   }, []registry.PluginOp{
+   {Action: registry.Get, Key: []byte("/test_txn/a")},
+   {Action: registry.Get, Key: []byte("/test_txn/"), Prefix: true},
+   })
+   if err != nil || resp == nil || resp.Succeeded || resp.Count != 3 { // 
a + [a,b]
+   t.Fatalf("TestEtcdClient failed, %#v", err)
+   }
+
+   // case: test key not exist
resp, err = etcd.TxnWithCmp(context.Background(), []registry.PluginOp{
{Action: registry.Put, Key

[incubator-servicecomb-service-center] branch master updated: SCB-899 Support go1.11 module maintaining (#438)

2018-09-10 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new e24e73e  SCB-899 Support go1.11 module maintaining (#438)
e24e73e is described below

commit e24e73eddb66aed71653c5f7845e5d3053f783a9
Author: little-cui 
AuthorDate: Mon Sep 10 17:06:52 2018 +0800

SCB-899 Support go1.11 module maintaining (#438)
---
 .gitignore |   1 +
 README.md  |  10 +-
 go.mod | 104 +
 3 files changed, 114 insertions(+), 1 deletion(-)

diff --git a/.gitignore b/.gitignore
index e679e2d..c4d8a42 100644
--- a/.gitignore
+++ b/.gitignore
@@ -26,3 +26,4 @@ frontend/node_modules/
 tmp/
 glide.lock
 incubator-servicecomb-service-center
+go.sum
diff --git a/README.md b/README.md
index 8bd99ca..c930804 100644
--- a/README.md
+++ b/README.md
@@ -85,8 +85,16 @@ cd 
$GOPATH/src/github.com/apache/incubator-servicecomb-service-center
 
 Dependencies
 
-We use glide for dependency management, please follow below steps to download 
all the dependency.
+By default, we use glide to manage dependencies. If the go version greater 
then `go1.11`, 
+you can download dependencies directly using command `go mod`. Please follow 
below steps to 
+download all the dependency.
+
 ```sh
+# greater then go1.11
+GO111MODULE=on go mod download
+GO111MODULE=on go mod vendor
+
+# lower than go1.11
 curl https://glide.sh/get | sh
 glide install
 ```
diff --git a/go.mod b/go.mod
new file mode 100644
index 000..ff87624
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,104 @@
+module github.com/apache/incubator-servicecomb-service-center
+
+replace (
+   github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b => 
github.com/istio/glog v0.0.0-20180224222734-2cc4b790554d
+   go.uber.org/zap v1.9.0 => github.com/uber-go/zap v1.9.0
+   golang.org/x/crypto v0.0.0-20180820150726-614d502a4dac => 
github.com/golang/crypto v0.0.0-20180820150726-614d502a4dac
+   golang.org/x/net v0.0.0-20180824152047-4bcd98cce591 => 
github.com/golang/net v0.0.0-20180824152047-4bcd98cce591
+   golang.org/x/sys v0.0.0-20180824143301-4910a1d54f87 => 
github.com/golang/sys v0.0.0-20180824143301-4910a1d54f87
+   golang.org/x/text v0.0.0-20170627122817-6353ef0f9243 => 
github.com/golang/text v0.0.0-20170627122817-6353ef0f9243
+   golang.org/x/time v0.0.0-20170424234030-8be79e1e0910 => 
github.com/golang/time v0.0.0-20170424234030-8be79e1e0910
+   google.golang.org/genproto v0.0.0-20170531203552-aa2eb687b4d3 => 
github.com/google/go-genproto v0.0.0-20170531203552-aa2eb687b4d3
+   google.golang.org/grpc v1.2.1-0.20170627165434-3c33c26290b7 => 
github.com/grpc/grpc-go v1.2.1-0.20170627165434-3c33c26290b7
+   k8s.io/api v0.0.0-20180601181742-8b7507fac302 => 
github.com/kubernetes/api v0.0.0-20180601181742-8b7507fac302
+   k8s.io/apimachinery v0.0.0-20180601181227-17529ec7eadb => 
github.com/kubernetes/apimachinery v0.0.0-20180601181227-17529ec7eadb
+   k8s.io/client-go 
v2.0.0-alpha.0.0.20180817174322-745ca8300397+incompatible => 
github.com/kubernetes/client-go 
v2.0.0-alpha.0.0.20180817174322-745ca8300397+incompatible
+)
+
+require (
+   github.com/Shopify/sarama v1.18.0 // indirect
+   github.com/apache/thrift v0.0.0-20180125231006-3d556248a8b9 // indirect
+   github.com/astaxie/beego v1.8.0
+   github.com/beorn7/perks v0.0.0-20180321164747-3a771d992973 // indirect
+   github.com/boltdb/bolt v1.3.1 // indirect
+   github.com/cockroachdb/cmux v0.0.0-20170110192607-30d10be49292 // 
indirect
+   github.com/coreos/etcd v3.1.9+incompatible
+   github.com/coreos/go-semver v0.2.0 // indirect
+   github.com/coreos/go-systemd v0.0.0-20180828140353-eee3db372b31 // 
indirect
+   github.com/coreos/pkg v0.0.0-20180108230652-97fdf19511ea // v4
+   github.com/davecgh/go-spew v1.1.1 // indirect
+   github.com/dgrijalva/jwt-go v3.2.0+incompatible // indirect
+   github.com/eapache/go-resiliency v1.1.0 // indirect
+   github.com/eapache/go-xerial-snappy v0.0.0-20180814174437-776d5712da21 
// indirect
+   github.com/eapache/queue v1.1.0 // indirect
+   github.com/ghodss/yaml v1.0.0 // indirect
+   github.com/go-chassis/paas-lager v0.0.0-20180905100939-eff93e5e67db
+   github.com/go-logfmt/logfmt v0.3.0 // indirect
+   github.com/go-mesh/openlogging v0.0.0-20180905092207-9cc15d7752d3 // 
indirect
+   github.com/gogo/protobuf v1.1.1 // indirect
+   github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b // indirect
+   github.com/golang/protobuf v1.0.0
+   github.com/golang/snappy v0.0.0-20180518054509-2e65f85255db // indirect
+   github.com/google/btree v0.0.0-20180813153112-4030bb1f1f0c // indirect
+   github.com/google/gofuzz v0.0.0-201

[incubator-servicecomb-service-center] branch master updated: SCB-929 Concurrent error in update resource APIs (#446)

2018-09-20 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 5a0c8d3  SCB-929 Concurrent error in update resource APIs (#446)
5a0c8d3 is described below

commit 5a0c8d33247246c0498d8879f3c2eaf241998fdc
Author: little-cui 
AuthorDate: Thu Sep 20 18:59:50 2018 +0800

SCB-929 Concurrent error in update resource APIs (#446)
---
 server/service/instance.go | 10 ++
 server/service/microservice.go | 11 +--
 server/service/rule.go | 25 +
 server/service/tag.go  | 30 --
 4 files changed, 44 insertions(+), 32 deletions(-)

diff --git a/server/service/instance.go b/server/service/instance.go
index f33fe48..d147cf5 100644
--- a/server/service/instance.go
+++ b/server/service/instance.go
@@ -653,9 +653,10 @@ func (s *InstanceService) UpdateStatus(ctx 
context.Context, in *pb.UpdateInstanc
}, nil
}
 
-   instance.Status = in.Status
+   copyInstanceRef := *instance
+   copyInstanceRef.Status = in.Status
 
-   if err := serviceUtil.UpdateInstance(ctx, domainProject, instance); err 
!= nil {
+   if err := serviceUtil.UpdateInstance(ctx, domainProject, 
©InstanceRef); err != nil {
log.Errorf(err, "update instance status failed, %s", 
updateStatusFlag)
resp := &pb.UpdateInstanceStatusResponse{
Response: pb.CreateResponseWithSCErr(err),
@@ -696,9 +697,10 @@ func (s *InstanceService) UpdateInstanceProperties(ctx 
context.Context, in *pb.U
}, nil
}
 
-   instance.Properties = in.Properties
+   copyInstanceRef := *instance
+   copyInstanceRef.Properties = in.Properties
 
-   if err := serviceUtil.UpdateInstance(ctx, domainProject, instance); err 
!= nil {
+   if err := serviceUtil.UpdateInstance(ctx, domainProject, 
©InstanceRef); err != nil {
log.Errorf(err, "update instance properties failed, %s", 
instanceFlag)
resp := &pb.UpdateInstancePropsResponse{
Response: pb.CreateResponseWithSCErr(err),
diff --git a/server/service/microservice.go b/server/service/microservice.go
index d93c537..cbde70f 100644
--- a/server/service/microservice.go
+++ b/server/service/microservice.go
@@ -518,13 +518,12 @@ func (s *MicroServiceService) UpdateProperties(ctx 
context.Context, in *pb.Updat
Response: pb.CreateResponse(scerr.ErrServiceNotExists, 
"service does not exist."),
}, nil
}
-   service.Properties = make(map[string]string)
-   for propertyKey := range in.Properties {
-   service.Properties[propertyKey] = in.Properties[propertyKey]
-   }
-   service.ModTimestamp = strconv.FormatInt(time.Now().Unix(), 10)
 
-   data, err := json.Marshal(service)
+   copyServiceRef := *service
+   copyServiceRef.Properties = in.Properties
+   copyServiceRef.ModTimestamp = strconv.FormatInt(time.Now().Unix(), 10)
+
+   data, err := json.Marshal(copyServiceRef)
if err != nil {
log.Errorf(err, "update service properties failed, serviceId is 
%s: json marshal service failed.", in.ServiceId)
return &pb.UpdateServicePropsResponse{
diff --git a/server/service/rule.go b/server/service/rule.go
index 40ca4bd..ad3efc7 100644
--- a/server/service/rule.go
+++ b/server/service/rule.go
@@ -199,23 +199,24 @@ func (s *MicroServiceService) UpdateRule(ctx 
context.Context, in *pb.UpdateServi
}, nil
}
 
-   oldRulePatten := rule.Pattern
-   oldRuleAttr := rule.Attribute
+   copyRuleRef := *rule
+   oldRulePatten := copyRuleRef.Pattern
+   oldRuleAttr := copyRuleRef.Attribute
isChangeIndex := false
-   if rule.Attribute != in.GetRule().Attribute {
+   if copyRuleRef.Attribute != in.GetRule().Attribute {
isChangeIndex = true
-   rule.Attribute = in.GetRule().Attribute
+   copyRuleRef.Attribute = in.GetRule().Attribute
}
-   if rule.Pattern != in.GetRule().Pattern {
+   if copyRuleRef.Pattern != in.GetRule().Pattern {
isChangeIndex = true
-   rule.Pattern = in.GetRule().Pattern
+   copyRuleRef.Pattern = in.GetRule().Pattern
}
-   rule.RuleType = in.GetRule().RuleType
-   rule.Description = in.GetRule().Description
-   rule.ModTimestamp = strconv.FormatInt(time.Now().Unix(), 10)
+   copyRuleRef.RuleType = in.GetRule().RuleType
+   copyRuleRef.Description = in.GetRule().Description
+   copyRuleRef.ModTimestamp = strconv.FormatInt(time.Now().Unix(), 10)
 
key := apt.GenerateServiceRuleKey(domain

[incubator-servicecomb-service-center] branch master updated: SCB-949 Configurable aggregate mode (#457)

2018-10-15 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 8ddbc2f  SCB-949   Configurable aggregate mode (#457)
8ddbc2f is described below

commit 8ddbc2f1bbcda497fb059bac928efb93433e9808
Author: little-cui 
AuthorDate: Mon Oct 15 17:11:11 2018 +0800

SCB-949   Configurable aggregate mode (#457)

* Print log when etcd health check failed

* Configurable aggregate mode
---
 README.md  |   2 +-
 docs/README.md |  22 ++-
 docs/aggregate.PNG | Bin 0 -> 68449 bytes
 docs/helm.md   | 172 +
 docs/integration-grafana.md|   4 +-
 docs/kubeclusters.md   |  73 +
 etc/conf/app.conf  |   2 +
 examples/infrastructures/k8s/README.md | 109 -
 .../k8s/service-center/templates/configmap.yaml|  37 ++---
 .../k8s/service-center/templates/deployment.yaml   |   4 +
 .../k8s/service-center/templates/ingress.yaml  |   2 +
 .../k8s/service-center/templates/rbac.yaml |   3 +-
 .../k8s/service-center/templates/service.yaml  |   4 +
 .../infrastructures/k8s/service-center/values.yaml |  36 ++---
 server/bootstrap/bootstrap.go  |   2 +-
 server/plugin/pkg/discovery/aggregate/adaptor.go   |  29 ++--
 server/plugin/pkg/discovery/aggregate/cache.go |  55 +++
 server/plugin/pkg/discovery/aggregate/common.go|  21 ++-
 server/plugin/pkg/discovery/aggregate/repo.go  |   2 +-
 .../pkg/discovery/{sc => servicecenter}/adaptor.go |   2 +-
 .../discovery/{sc => servicecenter}/aggregate.go   |   6 +-
 .../pkg/discovery/{sc => servicecenter}/cacher.go  |   2 +-
 .../pkg/discovery/{sc => servicecenter}/cluster.go |   2 +-
 .../pkg/discovery/{sc => servicecenter}/common.go  |   2 +-
 .../pkg/discovery/{sc => servicecenter}/repo.go|   2 +-
 server/plugin/pkg/registry/etcd/etcd.go|  14 +-
 server/server.go   |   4 +
 27 files changed, 423 insertions(+), 190 deletions(-)

diff --git a/README.md b/README.md
index d7302b9..e2fd849 100644
--- a/README.md
+++ b/README.md
@@ -22,7 +22,7 @@ Apache ServiceComb (incubating) Service-Center is a Restful 
based service-regist
  
 ## Documentation
 
-Project documentation is available on the [ServiceComb 
website][servicecomb-website]. You can also find full document [`here`](/docs).
+Project documentation is available on the [ServiceComb 
website][servicecomb-website]. You can also find full document 
[`here`](/docs/README.md).
 
 [servicecomb-website]: http://servicecomb.incubator.apache.org/
 
diff --git a/docs/README.md b/docs/README.md
index b94d0ab..c827fb4 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -2,29 +2,35 @@
 
  [Design](/docs/design.md)
 
- [Development Guide](/docs/dev-guide.md) 
+ Development Guide
 
+- [Guides](/docs/dev-guide.md) 
 - [Api 
Documentation](https://rawcdn.githack.com/ServiceComb/service-center/master/docs/api-docs.html),
 Swagger 
[`v4`](/server/core/swagger/v4.yaml)|[`v3`](/server/core/swagger/v3.yaml)
 - [Plug-in Extension](/docs/plugin.md)
 - [Command Line Client](/scctl/README.md)
 
- [Docker Image Guide](/scripts/docker) 
+ Docker Image Guide
 
 - [Making Service-Center Image](/scripts/docker/build-image)
 - [Making Front-end Image](/scripts/docker/build-frontend-image)
 
  Deploy Service-Center Locally
 
-- [In Docker](/examples/infrastructures/docker)
+- [Local](/README.md#running-service-center-using-the-release)
+- [Frontend](/README.md#running-frontend-using-the-release)
+- [Docker Compose](/scripts/docker) 
 
  Deploy Service-Center Cluster
 
-- [In Kubernetes Cluster](/examples/infrastructures/k8s)
-- [In VMs](/docs/sc-cluster.md)
-- [Deploy with TLS](/docs/security-tls.md)
-- [Multiple Datacenters](/docs/multidcs.md)
-- [Access Distinct Kubernetes clusters](/docs/aggregate.md)
++ **General**
+  - [VMs Cluster](/docs/sc-cluster.md)
+  - [Deploy with TLS](/docs/security-tls.md)
+  - [Multiple Datacenters](/docs/multidcs.md)
++ **Kubernetes**
+  - [Helm Chart](/docs/helm.md)
+  - [Access Distinct Clusters](/docs/kubeclusters.md)
+  - [Multiple Platforms Micro-services Manage](/docs/aggregate.md)
 
  Monitoring Service-Center
 
diff --git a/docs/aggregate.PNG b/docs/aggregate.PNG
new file mode 100644
index 000..a23c00a
Binary files /dev/null and b/docs/aggregate.PNG differ
diff --git a/docs/helm.md b/docs/helm.md
new file mode 100644
index 000..9c04507
--- /dev/null
+++ b/docs/helm.md
@@ -0,0 +1,172 @@
+Integrate with Kubernetes
+---
+
+A simple demo to deploy ServiceCenter 

[incubator-servicecomb-service-center] branch master updated: SCB-953 Support sync distinct Kubernetes service types to service-center (#458)

2018-10-18 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 3fe59ed  SCB-953 Support sync distinct Kubernetes service types to 
service-center (#458)
3fe59ed is described below

commit 3fe59edb7c6de5c58fb19aeb7b29a1158124e03e
Author: little-cui 
AuthorDate: Thu Oct 18 17:02:06 2018 +0800

SCB-953 Support sync distinct Kubernetes service types to service-center 
(#458)

* Bug fixes

* Should remove the instances when the register service annotation set false

* Update docs

* remove the duplicate cache

* Parse multiple endpoints from one registry

* SC Aggregate support enable TLS
---
 README.md  |  10 +++--
 docs/README.md |   2 +-
 docs/helm.md   |  20 ++
 docs/multidcs.md   |   9 +
 docs/multidcs2.PNG | Bin 0 -> 109260 bytes
 .../k8s/service-center/templates/configmap.yaml|   3 +-
 .../k8s/service-center/templates/deployment.yaml   |   3 +-
 .../k8s/service-center/templates/service.yaml  |   3 +-
 server/admin/service.go|   5 +++
 server/plugin/pkg/discovery/aggregate/adaptor.go   |  14 ++-
 .../pkg/discovery/k8s/adaptor/cacher_index.go  |  13 +++---
 .../pkg/discovery/k8s/adaptor/cacher_instance.go   |  44 +++--
 .../pkg/discovery/k8s/adaptor/cacher_service.go|  16 +---
 server/plugin/pkg/discovery/k8s/adaptor/common.go  |  16 
 .../pkg/discovery/k8s/adaptor/kube_client.go   |  13 ++
 .../pkg/discovery/servicecenter/aggregate.go   |  22 +++
 .../plugin/pkg/discovery/servicecenter/cluster.go  |   6 ++-
 server/plugin/pkg/registry/config.go   |  36 -
 server/plugin/pkg/registry/etcd/etcd.go|   2 +-
 server/plugin/pkg/registry/etcd/etcd_test.go   |  44 +
 20 files changed, 210 insertions(+), 71 deletions(-)

diff --git a/README.md b/README.md
index e2fd849..ecdf7d9 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@ Apache ServiceComb (incubating) Service-Center is a Restful 
based service-regist
  - **[`Open API`](/server/core/swagger/v4.yaml)**: API doc(Open API format) 
management for microservice
  - **Metadata**: Metadata management for both microservice and microservice 
instance
  - **Dependency**: Microservice dependency management
- - **Seperated**: Seperated microservice and microservice instance entity 
management
+ - **Separated**: Separated microservice and microservice instance entity 
management
  - **Domains**: Logical multiple domains management
  - **Security**: White and back list configuration for service discovery
  - **Discovery**: Support query instance by criteria 
@@ -17,8 +17,12 @@ Apache ServiceComb (incubating) Service-Center is a Restful 
based service-regist
  - **Performance**: Performance/Caching design
  - **[`Metrics`](/docs/integration-grafana.md)**: Able to expose Prometheus 
metric API automatically
  - **[`Tracing`](/docs/tracing.md)**: Able to report tracing data to Zipkin 
server
- - **[`Multi Datacenter`](/docs/multidcs.md)**: Additional layer of 
abstraction to clusters deployed in multiple datacenters
- - **[`Dynmaic Plug-in`](/docs/plugin.md)**: Able to load custom 
authentication, tls and other dynamic libraries
+ - **[`Pluginable`](/docs/plugin.md)**: Able to load custom authentication, 
tls and other dynamic libraries
+ - **[`CLI`](/scctl/pkg/plugin/README.md)**: Easy to control service center
+ - **[`Kubernetes`](/docs/kubeclusters.md)**: Embrace kubernetes ecosystem and 
support multi cluster service discovery
+ - **[`Datacenters`](/docs/multidcs.md)**: Additional layer of abstraction to 
clusters deployed in multiple datacenters
+ - **[`Aggregation`](/docs/aggregate.md)**: Able to aggregate microservices 
from multiple registry platforms and
+support platform registry and client side registry at the same time
  
 ## Documentation
 
diff --git a/docs/README.md b/docs/README.md
index c827fb4..0d9d719 100644
--- a/docs/README.md
+++ b/docs/README.md
@@ -30,7 +30,7 @@ Swagger 
[`v4`](/server/core/swagger/v4.yaml)|[`v3`](/server/core/swagger/v3.yaml
 + **Kubernetes**
   - [Helm Chart](/docs/helm.md)
   - [Access Distinct Clusters](/docs/kubeclusters.md)
-  - [Multiple Platforms Micro-services Manage](/docs/aggregate.md)
+  - [Multiple Registry Aggregation](/docs/aggregate.md)
 
  Monitoring Service-Center
 
diff --git a/docs/helm.md b/docs/helm.md
index 9c04507..405ea11 100644
--- a/docs/helm.md
+++ b/docs/helm.md
@@ -72,25 +72,11 @@ cd ${PROJECT_ROOT}/examples/infrastructures/k8s
 # install etcd cluster
 helm install --name cor

[incubator-servicecomb-service-center] branch master updated: SCB-972 Using Sha1 signature key as UUID of micro service (#460)

2018-10-22 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new bd59e8b  SCB-972 Using Sha1 signature key as UUID of micro service 
(#460)
bd59e8b is described below

commit bd59e8bf98179b49c997f10ed4f529b2d1c0afcf
Author: little-cui 
AuthorDate: Tue Oct 23 11:33:04 2018 +0800

SCB-972 Using Sha1 signature key as UUID of micro service (#460)

* SCB-972 Using Sha1 signature key as UUID of micro service

* Fix the IT failure
---
 etc/conf/app.conf  |  3 ++
 integration/governance_test.go |  6 ++--
 integration/instances_test.go  |  8 ++---
 integration/integrationtest_suite_test.go  |  2 ++
 integration/microservices_test.go  |  6 ++--
 integration/rules_test.go  |  2 +-
 integration/tags_test.go   |  2 +-
 server/bootstrap/bootstrap.go  |  1 +
 server/plugin/pkg/uuid/buildin/buildin.go  |  5 ++--
 .../{buildin/buildin.go => context/context.go} | 34 +-
 server/plugin/pkg/uuid/uuid.go |  8 +++--
 server/service/instance.go |  2 +-
 server/service/microservice.go |  8 +++--
 13 files changed, 54 insertions(+), 33 deletions(-)

diff --git a/etc/conf/app.conf b/etc/conf/app.conf
index df4128c..38b6690 100644
--- a/etc/conf/app.conf
+++ b/etc/conf/app.conf
@@ -108,6 +108,9 @@ auditlog_plugin = ""
 #   in path specified by TRACING_FILE_PATH env variable
 trace_plugin = ""
 
+#customize the uuid format
+uuid_plugin = "context"
+
 ###
 # rate limit options
 ###
diff --git a/integration/governance_test.go b/integration/governance_test.go
index 2f592d7..e8c0360 100644
--- a/integration/governance_test.go
+++ b/integration/governance_test.go
@@ -66,7 +66,7 @@ var _ = Describe("MicroService Api Test", func() {
Expect(resp.StatusCode).To(Equal(http.StatusOK))
respbody, _ := ioutil.ReadAll(resp.Body)
serviceId = 
gojson.Json(string(respbody)).Get("serviceId").Tostring()
-   Expect(len(serviceId)).Should(BeNumerically("==", 32))
+   Expect(len(serviceId)).Should(BeNumerically("==", 
LengthUUID))
 
//Register MicroService Instance
endpoints := []string{"cse://127.0.0.1:9984"}
@@ -105,7 +105,7 @@ var _ = Describe("MicroService Api Test", func() {
Expect(resp.StatusCode).To(Equal(http.StatusOK))
respbody, _ = ioutil.ReadAll(resp.Body)
serviceInstanceID = 
gojson.Json(string(respbody)).Get("instanceId").Tostring()
-   Expect(len(serviceId)).Should(BeNumerically("==", 32))
+   Expect(len(serviceId)).Should(BeNumerically("==", 
LengthUUID))
 
})
 
@@ -259,7 +259,7 @@ func BenchmarkGovernance(b *testing.B) {
Expect(resp.StatusCode).To(Equal(http.StatusOK))
respbody, _ := ioutil.ReadAll(resp.Body)
serviceId := gojson.Json(string(respbody)).Get("serviceId").Tostring()
-   Expect(len(serviceId)).Should(BeNumerically("==", 32))
+   Expect(len(serviceId)).Should(BeNumerically("==", LengthUUID))
 
for i := 0; i < b.N; i++ {
url := strings.Replace(GETGOVERNANCESERVICEDETAILS, 
":serviceId", serviceId, 1)
diff --git a/integration/instances_test.go b/integration/instances_test.go
index 458c45d..0d675ee 100644
--- a/integration/instances_test.go
+++ b/integration/instances_test.go
@@ -69,7 +69,7 @@ var _ = Describe("MicroService Api Test", func() {
Expect(resp.StatusCode).To(Equal(http.StatusOK))
respbody, _ := ioutil.ReadAll(resp.Body)
serviceId = 
gojson.Json(string(respbody)).Get("serviceId").Tostring()
-   Expect(len(serviceId)).Should(BeNumerically("==", 32))
+   Expect(len(serviceId)).Should(BeNumerically("==", 
LengthUUID))
 
//Register MicroService Instance
endpoints := []string{"cse://127.0.0.1:9984"}
@@ -108,7 +108,7 @@ var _ = Describe("MicroService Api Test", func() {
Expect(resp.StatusCode).To(Equal(http.StatusOK))
  

[incubator-servicecomb-service-center] branch master updated (0d10009 -> 0e08130)

2018-10-24 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from 0d10009  SCB-972 Using Sha1 signature key as UUID of k8s service (#461)
 add 0e08130  SCB-977 Dependencies will not be updated in 5min when 
re-create provider service (#462)

No new revisions were added by this update.

Summary of changes:
 server/core/key_convertor.go  |  8 +--
 server/core/key_convertor_test.go | 12 ++--
 server/service/dependency_test.go | 92 +++
 server/service/event/service_event_handler.go |  1 +
 server/service/event/tag_event_handler.go |  2 +-
 server/service/instance.go| 17 ++---
 server/service/util/dependency_util.go|  2 +-
 7 files changed, 111 insertions(+), 23 deletions(-)



[incubator-servicecomb-service-center] branch master updated: SCB-981 Can not remove the microservice and instance properties (#465)

2018-10-25 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new c5473e0  SCB-981 Can not remove the microservice and instance 
properties (#465)
c5473e0 is described below

commit c5473e0d125130abd8e5469566fcf4c24cbab965
Author: little-cui 
AuthorDate: Thu Oct 25 22:30:18 2018 +0800

SCB-981 Can not remove the microservice and instance properties (#465)
---
 server/service/instance_test.go  | 5 +++--
 server/service/instance_validator.go | 1 -
 server/service/microservice_test.go  | 6 +++---
 server/service/microservice_validator.go | 1 -
 4 files changed, 6 insertions(+), 7 deletions(-)

diff --git a/server/service/instance_test.go b/server/service/instance_test.go
index fb012d3..dd5de49 100644
--- a/server/service/instance_test.go
+++ b/server/service/instance_test.go
@@ -745,13 +745,14 @@ var _ = Describe("'Instance' service", func() {
 
Expect(err).To(BeNil())

Expect(respUpdateProperties.Response.Code).To(Equal(scerr.ErrInvalidParams))
+
+   By("remove the properties")
respUpdateProperties, err = 
instanceResource.UpdateInstanceProperties(getContext(), 
&pb.UpdateInstancePropsRequest{
ServiceId:  serviceId,
InstanceId: instanceId,
})
-
Expect(err).To(BeNil())
-   
Expect(respUpdateProperties.Response.Code).To(Equal(scerr.ErrInvalidParams))
+   
Expect(respUpdateProperties.Response.Code).To(Equal(pb.Response_SUCCESS))
 
By("service does not exist")
respUpdateProperties, err = 
instanceResource.UpdateInstanceProperties(getContext(), 
&pb.UpdateInstancePropsRequest{
diff --git a/server/service/instance_validator.go 
b/server/service/instance_validator.go
index 369b8aa..1777b40 100644
--- a/server/service/instance_validator.go
+++ b/server/service/instance_validator.go
@@ -81,7 +81,6 @@ func UpdateInstanceReqValidator() *validate.Validator {
 func UpdateInstancePropsReqValidator() *validate.Validator {
return updateInstancePropsReqValidator.Init(func(v *validate.Validator) 
{
v.AddRules(heartbeatReqValidator.GetRules())
-   v.AddRule("Properties", 
UpdateServicePropsReqValidator().GetRule("Properties"))
})
 }
 
diff --git a/server/service/microservice_test.go 
b/server/service/microservice_test.go
index f27c897..b1c36b0 100644
--- a/server/service/microservice_test.go
+++ b/server/service/microservice_test.go
@@ -1079,15 +1079,15 @@ var _ = Describe("'Micro-service' service", func() {
})
})
 
-   Context("when property is nil or empty", func() {
-   It("should be failed", func() {
+   Context("when remove the properties", func() {
+   It("should be pass", func() {
r := &pb.UpdateServicePropsRequest{
ServiceId:  serviceId,
Properties: nil,
}
resp, err := 
serviceResource.UpdateProperties(getContext(), r)
Expect(err).To(BeNil())
-   
Expect(resp.Response.Code).ToNot(Equal(pb.Response_SUCCESS))
+   
Expect(resp.Response.Code).To(Equal(pb.Response_SUCCESS))
 
r = &pb.UpdateServicePropsRequest{
ServiceId:  "",
diff --git a/server/service/microservice_validator.go 
b/server/service/microservice_validator.go
index d010ec5..b4eb4a7 100644
--- a/server/service/microservice_validator.go
+++ b/server/service/microservice_validator.go
@@ -108,6 +108,5 @@ func CreateServiceReqValidator() *validate.Validator {
 func UpdateServicePropsReqValidator() *validate.Validator {
return updateServicePropsReqValidator.Init(func(v *validate.Validator) {
v.AddRule("ServiceId", 
GetServiceReqValidator().GetRule("ServiceId"))
-   v.AddRule("Properties", &validate.ValidateRule{Min: 1})
})
 }



[incubator-servicecomb-service-center] branch master updated: Update README (#469)

2018-10-28 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new ed9a459  Update README (#469)
ed9a459 is described below

commit ed9a459d51e2e40a9b07bacf3e9d74ffca514f41
Author: little-cui 
AuthorDate: Mon Oct 29 12:34:08 2018 +0800

Update README (#469)
---
 README.md  | 8 ++--
 frontend/Readme.md | 6 ++
 scctl/README.md| 5 +
 3 files changed, 17 insertions(+), 2 deletions(-)

diff --git a/README.md b/README.md
index ecdf7d9..3ece834 100644
--- a/README.md
+++ b/README.md
@@ -18,7 +18,7 @@ Apache ServiceComb (incubating) Service-Center is a Restful 
based service-regist
  - **[`Metrics`](/docs/integration-grafana.md)**: Able to expose Prometheus 
metric API automatically
  - **[`Tracing`](/docs/tracing.md)**: Able to report tracing data to Zipkin 
server
  - **[`Pluginable`](/docs/plugin.md)**: Able to load custom authentication, 
tls and other dynamic libraries
- - **[`CLI`](/scctl/pkg/plugin/README.md)**: Easy to control service center
+ - **[`CLI`](/scctl/README.md)**: Easy to control service center
  - **[`Kubernetes`](/docs/kubeclusters.md)**: Embrace kubernetes ecosystem and 
support multi cluster service discovery
  - **[`Datacenters`](/docs/multidcs.md)**: Additional layer of abstraction to 
clusters deployed in multiple datacenters
  - **[`Aggregation`](/docs/aggregate.md)**: Able to aggregate microservices 
from multiple registry platforms and
@@ -83,6 +83,10 @@ httpport = 30100
 
 ### Building & Running Service-Center from source
 
+Requirements
+
++ [Go](https://golang.org) version 1.8+ is required to build the latest 
version of Service-Center.
+
 Download the Code
 ```sh
 git clone https://github.com/apache/incubator-servicecomb-service-center.git 
$GOPATH/src/github.com/apache/incubator-servicecomb-service-center
@@ -91,7 +95,7 @@ cd 
$GOPATH/src/github.com/apache/incubator-servicecomb-service-center
 
 Dependencies
 
-By default, we use glide to manage dependencies. If the go version greater 
then `go1.11`, 
+By default, we use [glide](https://glide.sh)(version: 0.13+) to manage 
dependencies. If the go version greater then `go1.11`, 
 you can download dependencies directly using command `go mod`. Please follow 
below steps to 
 download all the dependency.
 
diff --git a/frontend/Readme.md b/frontend/Readme.md
index dde0dc7..995152d 100644
--- a/frontend/Readme.md
+++ b/frontend/Readme.md
@@ -25,6 +25,12 @@ frontend_host_port=30103
 ```
 
 # Running UI from source code
+
+Requirements
+
++ [Go](https://golang.org) version 1.8+ is required to build the latest 
version of UI.
++ [bower](https://bower.io) version 1.8+ is required to download the packages 
for web.
+
 However if you want to try our latest code then you can follow the below steps
 ```
 #Make sure your GOPATH is set correctly as the UI runs on GO Backend Server
diff --git a/scctl/README.md b/scctl/README.md
index 7d3c8c6..f1b8fca 100644
--- a/scctl/README.md
+++ b/scctl/README.md
@@ -25,6 +25,11 @@ Note: If you already bootstrap SC and listen on 
`127.0.0.1:30100`, this
 command will also print the SC version.
 
 ### Running scctl from source code
+
+Requirements
+
++ [Go](https://golang.org) version 1.8+ is required to build the latest 
version of scctl.
+
 However if you want to try our latest code then you can follow the below steps
 ```
 #Make sure your GOPATH is set correctly and download all the vendors of SC



[incubator-servicecomb-service-center] branch master updated: SCB-993 Can not test Schema if instance port greater than 4 digits (#480)

2018-11-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new eb3aea0  SCB-993 Can not test Schema if instance port greater than 4 
digits (#480)
eb3aea0 is described below

commit eb3aea04769d5cec222aa98a23c461f37cd84f9e
Author: little-cui 
AuthorDate: Fri Nov 2 16:43:22 2018 +0800

SCB-993 Can not test Schema if instance port greater than 4 digits (#480)
---
 .../scripts/modules/serviceCenter/controllers/schemaCtrl.js| 10 ++
 1 file changed, 2 insertions(+), 8 deletions(-)

diff --git 
a/frontend/app/scripts/modules/serviceCenter/controllers/schemaCtrl.js 
b/frontend/app/scripts/modules/serviceCenter/controllers/schemaCtrl.js
index ab24663..cd21f13 100644
--- a/frontend/app/scripts/modules/serviceCenter/controllers/schemaCtrl.js
+++ b/frontend/app/scripts/modules/serviceCenter/controllers/schemaCtrl.js
@@ -261,14 +261,8 @@ angular.module('serviceCenter.sc')
 httpService.apiRequest(url, method, null, headers, 
"nopopup").then(function(response) {
 $(".loader").hide();
 if (response && response.data && 
response.data.schema) {
-if ($scope.selectedAddress.indexOf("rest") 
!= -1) {
-var rest = 
$scope.selectedAddress.split(':');
-var ip = rest[1].substring(2, 
rest[1].length) + ":" + rest[2].substring(0, 4);
-}
-if 
($scope.selectedAddress.indexOf("highway") != -1) {
-var highway = 
$scope.selectedAddress.split(':');
-var ip = highway[1].substring(2, 
highway[1].length) + ":" + highway[2].substring(0, 4);
-}
+var arr = 
/^(?:\w+:\/\/)?([^\/?#]+)(.*)$/.exec($scope.selectedAddress);
+var ip = arr[1];
 var schema = response.data.schema;
 schema = schema.replace(/\\\s/g, "");
 var json = YAML.parse(schema);



[incubator-servicecomb-service-center] branch master updated: SCB-988 Add loadbalancer in sc client (#479)

2018-11-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new dc76a75  SCB-988 Add loadbalancer in sc client (#479)
dc76a75 is described below

commit dc76a7515fa4518b3bf2a75327661e1bb97fa3c4
Author: little-cui 
AuthorDate: Sat Nov 3 00:16:48 2018 +0800

SCB-988 Add loadbalancer in sc client (#479)
---
 pkg/client/sc/apis.go  | 34 ++
 pkg/client/sc/client.go| 18 ++--
 pkg/client/sc/{client.go => client_lb.go}  | 34 --
 pkg/client/sc/config.go|  4 +-
 pkg/{client/sc/client.go => lb/loadbalancer.go}| 19 ++--
 .../sc/config.go => lb/loadbalancer_test.go}   | 53 +-
 pkg/{client/sc/client.go => lb/roundrobin.go}  | 38 +++-
 pkg/rest/client.go | 10 ++--
 scctl/pkg/cmd/cmd.go   |  4 +-
 .../pkg/discovery/servicecenter/aggregate.go   | 16 +++
 10 files changed, 130 insertions(+), 100 deletions(-)

diff --git a/pkg/client/sc/apis.go b/pkg/client/sc/apis.go
index 63e96e7..2947297 100644
--- a/pkg/client/sc/apis.go
+++ b/pkg/client/sc/apis.go
@@ -47,16 +47,8 @@ func (c *SCClient) toError(body []byte) *scerr.Error {
return message
 }
 
-func (c *SCClient) commonHeaders() http.Header {
-   var headers = make(http.Header)
-   if len(c.Config.Token) > 0 {
-   headers.Set("X-Auth-Token", c.Config.Token)
-   }
-   return headers
-}
-
 func (c *SCClient) GetScVersion() (*version.VersionSet, *scerr.Error) {
-   resp, err := c.URLClient.HttpDo(http.MethodGet, 
c.Config.Addr+apiVersionURL, c.commonHeaders(), nil)
+   resp, err := c.RestDo(http.MethodGet, apiVersionURL, c.CommonHeaders(), 
nil)
if err != nil {
return nil, scerr.NewError(scerr.ErrInternal, err.Error())
}
@@ -82,10 +74,10 @@ func (c *SCClient) GetScVersion() (*version.VersionSet, 
*scerr.Error) {
 }
 
 func (c *SCClient) GetScCache() (*model.Cache, *scerr.Error) {
-   headers := c.commonHeaders()
+   headers := c.CommonHeaders()
// only default domain has admin permission
headers.Set("X-Domain-Name", "default")
-   resp, err := c.URLClient.HttpDo(http.MethodGet, 
c.Config.Addr+apiDumpURL, headers, nil)
+   resp, err := c.RestDo(http.MethodGet, apiDumpURL, headers, nil)
if err != nil {
return nil, scerr.NewError(scerr.ErrInternal, err.Error())
}
@@ -112,10 +104,10 @@ func (c *SCClient) GetScCache() (*model.Cache, 
*scerr.Error) {
 
 func (c *SCClient) GetSchemasByServiceId(domainProject, serviceId string) 
([]*pb.Schema, *scerr.Error) {
domain, project := core.FromDomainProject(domainProject)
-   headers := c.commonHeaders()
+   headers := c.CommonHeaders()
headers.Set("X-Domain-Name", domain)
-   resp, err := c.URLClient.HttpDo(http.MethodGet,
-   c.Config.Addr+fmt.Sprintf(apiSchemasURL, project, 
serviceId)+"?withSchema=1",
+   resp, err := c.RestDo(http.MethodGet,
+   fmt.Sprintf(apiSchemasURL, project, serviceId)+"?withSchema=1",
headers, nil)
if err != nil {
return nil, scerr.NewError(scerr.ErrInternal, err.Error())
@@ -143,10 +135,10 @@ func (c *SCClient) GetSchemasByServiceId(domainProject, 
serviceId string) ([]*pb
 
 func (c *SCClient) GetSchemaBySchemaId(domainProject, serviceId, schemaId 
string) (*pb.Schema, *scerr.Error) {
domain, project := core.FromDomainProject(domainProject)
-   headers := c.commonHeaders()
+   headers := c.CommonHeaders()
headers.Set("X-Domain-Name", domain)
-   resp, err := c.URLClient.HttpDo(http.MethodGet,
-   c.Config.Addr+fmt.Sprintf(apiSchemaURL, project, serviceId, 
schemaId),
+   resp, err := c.RestDo(http.MethodGet,
+   fmt.Sprintf(apiSchemaURL, project, serviceId, schemaId),
headers, nil)
if err != nil {
return nil, scerr.NewError(scerr.ErrInternal, err.Error())
@@ -177,10 +169,10 @@ func (c *SCClient) GetSchemaBySchemaId(domainProject, 
serviceId, schemaId string
 }
 
 func (c *SCClient) GetClusters() (registry.Clusters, *scerr.Error) {
-   headers := c.commonHeaders()
+   headers := c.CommonHeaders()
// only default domain has admin permission
headers.Set("X-Domain-Name", "default")
-   resp, err := c.URLClient.HttpDo(http.MethodGet, 
c.Config.Addr+apiClustersURL, headers, nil)
+   resp, err := c.RestDo(http.MethodGet, apiClustersURL, headers, nil)
if err != nil {
ret

[incubator-servicecomb-service-center] branch master updated: SCB-977 Dependencies will not be updated in 5min when re-create provider service (#478)

2018-11-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 7f9cdb7  SCB-977 Dependencies will not be updated in 5min when 
re-create provider service (#478)
7f9cdb7 is described below

commit 7f9cdb72cc949a26cf1b62a1fd620e910924749f
Author: little-cui 
AuthorDate: Sat Nov 3 00:18:24 2018 +0800

SCB-977 Dependencies will not be updated in 5min when re-create provider 
service (#478)
---
 .../service/event/dependency_rule_event_handler.go | 51 +
 .../event/dependency_rule_event_handler_test.go| 64 ++
 server/service/event/event.go  |  1 +
 server/service/event/instance_event_handler.go | 13 +++--
 server/service/event/rule_event_handler.go |  7 ++-
 server/service/event/service_event_handler.go  |  5 +-
 server/service/event/tag_event_handler.go  | 10 ++--
 7 files changed, 136 insertions(+), 15 deletions(-)

diff --git a/server/service/event/dependency_rule_event_handler.go 
b/server/service/event/dependency_rule_event_handler.go
new file mode 100644
index 000..3befe09
--- /dev/null
+++ b/server/service/event/dependency_rule_event_handler.go
@@ -0,0 +1,51 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package event
+
+import (
+   "github.com/apache/incubator-servicecomb-service-center/pkg/log"
+   "github.com/apache/incubator-servicecomb-service-center/server/core"
+   
"github.com/apache/incubator-servicecomb-service-center/server/core/backend"
+   pb 
"github.com/apache/incubator-servicecomb-service-center/server/core/proto"
+   
"github.com/apache/incubator-servicecomb-service-center/server/plugin/pkg/discovery"
+   
"github.com/apache/incubator-servicecomb-service-center/server/service/cache"
+)
+
+type DependencyRuleEventHandler struct {
+}
+
+func (h *DependencyRuleEventHandler) Type() discovery.Type {
+   return backend.DEPENDENCY_RULE
+}
+
+func (h *DependencyRuleEventHandler) OnEvent(evt discovery.KvEvent) {
+   action := evt.Type
+   if action != pb.EVT_UPDATE && action != pb.EVT_DELETE {
+   return
+   }
+   t, providerKey := core.GetInfoFromDependencyRuleKV(evt.KV.Key)
+   if t != core.DEPS_PROVIDER {
+   return
+   }
+   log.Debugf("caught [%s] provider rule[%s/%s/%s/%s] event",
+   action, providerKey.Environment, providerKey.AppId, 
providerKey.ServiceName, providerKey.Version)
+   cache.DependencyRule.Remove(providerKey)
+}
+
+func NewDependencyRuleEventHandler() *DependencyRuleEventHandler {
+   return &DependencyRuleEventHandler{}
+}
diff --git a/server/service/event/dependency_rule_event_handler_test.go 
b/server/service/event/dependency_rule_event_handler_test.go
new file mode 100644
index 000..9a4ec3b
--- /dev/null
+++ b/server/service/event/dependency_rule_event_handler_test.go
@@ -0,0 +1,64 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one or more
+ * contributor license agreements.  See the NOTICE file distributed with
+ * this work for additional information regarding copyright ownership.
+ * The ASF licenses this file to You under the Apache License, Version 2.0
+ * (the "License"); you may not use this file except in compliance with
+ * the License.  You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package event
+
+import (
+   "github.com/apache/incubator-servicecomb-service-center/server/core"
+   pb 
"github.com/apache/incubator-servicecomb-service-center/ser

[incubator-servicecomb-service-center] branch master updated: SCB-994 SC can not read the context when client using grpc api (#476)

2018-11-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new ea31a1a  SCB-994 SC can not read the context when client using grpc 
api (#476)
ea31a1a is described below

commit ea31a1a3c9fdbd242817157f61e4aad15bfa5f0f
Author: little-cui 
AuthorDate: Sat Nov 3 00:19:28 2018 +0800

SCB-994 SC can not read the context when client using grpc api (#476)

* Support gRPC context

* Bug fixes
---
 pkg/util/context.go  | 30 -
 pkg/util/context_grpc.go | 32 +
 pkg/util/context_grpc_test.go| 57 
 server/handler/context/v3.go |  4 +-
 server/handler/context/v4.go |  4 +-
 server/rest/controller/v4/instance_controller.go |  8 ++--
 server/service/instance.go   |  2 +-
 7 files changed, 118 insertions(+), 19 deletions(-)

diff --git a/pkg/util/context.go b/pkg/util/context.go
index 79fb515..838d4a6 100644
--- a/pkg/util/context.go
+++ b/pkg/util/context.go
@@ -22,6 +22,13 @@ import (
"time"
 )
 
+const (
+   CtxDomain= "domain"
+   CtxProject   = "project"
+   CtxTargetDomain  = "target-domain"
+   CtxTargetProject = "target-project"
+)
+
 type StringContext struct {
parentCtx context.Context
kv*ConcurrentMap
@@ -46,7 +53,7 @@ func (c *StringContext) Value(key interface{}) interface{} {
}
v, ok := c.kv.Get(k)
if !ok {
-   return c.parentCtx.Value(key)
+   return FromContext(c.parentCtx, k)
}
return v
 }
@@ -94,7 +101,10 @@ func CloneContext(ctx context.Context) context.Context {
 }
 
 func FromContext(ctx context.Context, key string) interface{} {
-   return ctx.Value(key)
+   if v := ctx.Value(key); v != nil {
+   return v
+   }
+   return FromMetadata(ctx, key)
 }
 
 func SetRequestContext(r *http.Request, key string, val interface{}) 
*http.Request {
@@ -116,7 +126,7 @@ func ParseTargetDomainProject(ctx context.Context) string {
 }
 
 func ParseDomain(ctx context.Context) string {
-   v, ok := FromContext(ctx, "domain").(string)
+   v, ok := FromContext(ctx, CtxDomain).(string)
if !ok {
return ""
}
@@ -124,7 +134,7 @@ func ParseDomain(ctx context.Context) string {
 }
 
 func ParseTargetDomain(ctx context.Context) string {
-   v, _ := FromContext(ctx, "target-domain").(string)
+   v, _ := FromContext(ctx, CtxTargetDomain).(string)
if len(v) == 0 {
return ParseDomain(ctx)
}
@@ -132,7 +142,7 @@ func ParseTargetDomain(ctx context.Context) string {
 }
 
 func ParseProject(ctx context.Context) string {
-   v, ok := FromContext(ctx, "project").(string)
+   v, ok := FromContext(ctx, CtxProject).(string)
if !ok {
return ""
}
@@ -140,7 +150,7 @@ func ParseProject(ctx context.Context) string {
 }
 
 func ParseTargetProject(ctx context.Context) string {
-   v, _ := FromContext(ctx, "target-project").(string)
+   v, _ := FromContext(ctx, CtxTargetProject).(string)
if len(v) == 0 {
return ParseProject(ctx)
}
@@ -148,19 +158,19 @@ func ParseTargetProject(ctx context.Context) string {
 }
 
 func SetDomain(ctx context.Context, domain string) context.Context {
-   return SetContext(ctx, "domain", domain)
+   return SetContext(ctx, CtxDomain, domain)
 }
 
 func SetProject(ctx context.Context, project string) context.Context {
-   return SetContext(ctx, "project", project)
+   return SetContext(ctx, CtxProject, project)
 }
 
 func SetTargetDomain(ctx context.Context, domain string) context.Context {
-   return SetContext(ctx, "target-domain", domain)
+   return SetContext(ctx, CtxTargetDomain, domain)
 }
 
 func SetTargetProject(ctx context.Context, project string) context.Context {
-   return SetContext(ctx, "target-project", project)
+   return SetContext(ctx, CtxTargetProject, project)
 }
 
 func SetDomainProject(ctx context.Context, domain string, project string) 
context.Context {
diff --git a/pkg/util/context_grpc.go b/pkg/util/context_grpc.go
new file mode 100644
index 000..d2badb6
--- /dev/null
+++ b/pkg/util/context_grpc.go
@@ -0,0 +1,32 @@
+// Licensed to the Apache Software Foundation (ASF) under one or more
+// contributor license agreements.  See the NOTICE file distributed with
+// this work for additional information regarding copyright ownership.
+// The ASF licenses this file to You under the Apache L

[incubator-servicecomb-service-center] 01/01: Merge pull request #346 from little-cui/master

2018-05-09 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git

commit 840b8c15e927e418cd9e3818cd834ba0734c2cac
Merge: f55a89c a3883fe
Author: Mohammad Asif Siddiqui 
AuthorDate: Wed May 9 19:01:47 2018 +0530

Merge pull request #346 from little-cui/master

SCB-565 Register instance with the same id will create redundant endpoint 
index data

 server/service/instances.go   |  4 ++--
 server/service/util/instance_util.go  | 16 ++--
 server/service/util/instance_util_test.go | 23 +++
 3 files changed, 31 insertions(+), 12 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] branch master updated (f55a89c -> 840b8c1)

2018-05-09 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from f55a89c  Fix Capitalization of the ServiceName in the Service list 
(#345)
 add 743c850  SCB-565 Register instance with the same id will create 
redundant endpoint index data
 add a3883fe  SCB-565 Optimize code
 new 840b8c1  Merge pull request #346 from little-cui/master

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.


Summary of changes:
 server/service/instances.go   |  4 ++--
 server/service/util/instance_util.go  | 16 ++--
 server/service/util/instance_util_test.go | 23 +++
 3 files changed, 31 insertions(+), 12 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] branch master updated: SCB-586 Query providers api will return null when provider is removed (#351)

2018-05-16 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 6eee554   SCB-586 Query providers api will return null when provider 
is removed  (#351)
6eee554 is described below

commit 6eee5543417cd7d9a2ba4a059fdc7a51a47f7998
Author: little-cui 
AuthorDate: Wed May 16 17:11:09 2018 +0800

 SCB-586 Query providers api will return null when provider is removed  
(#351)

SCB-586 Query providers api will return null when provider is removed
---
 .gitignore   |   2 +
 scripts/release/make_release.sh  |   7 +--
 server/error/error.go|  13 +++--
 server/error/error_test.go   |  46 +++
 server/service/instances.go  |  50 +
 server/service/instances_test.go |  65 --
 server/service/service_suite_test.go |  14 -
 server/service/util/dependency.go|   5 +-
 server/service/util/rule_util.go |  10 ++--
 server/service/watch.go  |  72 
 server/service/watch_test.go | 105 +++
 11 files changed, 247 insertions(+), 142 deletions(-)

diff --git a/.gitignore b/.gitignore
index 855c698..9923352 100644
--- a/.gitignore
+++ b/.gitignore
@@ -14,9 +14,11 @@ vendor/**
 
 # for local UT
 server/service/conf/
+frontend/conf/
 etc/data/
 etc/ssl/
 integration/conf/
 frontend/bower_components/
 frontend/node_modules/
 server/govern/conf/
+tmp/
\ No newline at end of file
diff --git a/scripts/release/make_release.sh b/scripts/release/make_release.sh
index b7a18f1..abc746a 100755
--- a/scripts/release/make_release.sh
+++ b/scripts/release/make_release.sh
@@ -88,13 +88,11 @@ build_linux(){
 export BUILD_NUMBER=$RELEASE
 GO_LDFLAGS="${GO_LDFLAGS} -X 
'github.com/apache/incubator-servicecomb-service-center/version.BUILD_TAG=$(date
 +%Y%m%d%H%M%S).$BUILD_NUMBER.$GIT_COMMIT'"
 GO_LDFLAGS="${GO_LDFLAGS} -X 
'github.com/apache/incubator-servicecomb-service-center/version.VERSION=$BUILD_NUMBER'"
-go build --ldflags "${GO_LDFLAGS}" -o service-center
-cp -r service-center $PACKAGE_PREFIX-$PACKAGE-linux-amd64
+go build --ldflags "${GO_LDFLAGS}" -o 
$PACKAGE_PREFIX-$PACKAGE-linux-amd64/service-center
 
 ## Build Frontend Release
 cd frontend
-go build -o frontend
-cp -r frontend ../$PACKAGE_PREFIX-$PACKAGE-linux-amd64
+go build -o ../$PACKAGE_PREFIX-$PACKAGE-linux-amd64/frontend
 cd ..
 
 prepare_conf
@@ -116,7 +114,6 @@ build_linux(){
 
 ## Archive the release
 tar -czvf $PACKAGE_PREFIX-$PACKAGE-linux-amd64.tar.gz 
$PACKAGE_PREFIX-$PACKAGE-linux-amd64
-
 }
 
 # Build Windows Release
diff --git a/server/error/error.go b/server/error/error.go
index a12662c..aca44a0 100644
--- a/server/error/error.go
+++ b/server/error/error.go
@@ -18,6 +18,7 @@ package error
 
 import (
"encoding/json"
+   "fmt"
 )
 
 var errors = map[int32]string{
@@ -94,23 +95,23 @@ type Error struct {
Detail  string `json:"detail,omitempty"`
 }
 
-func (e Error) Error() string {
+func (e *Error) Error() string {
if len(e.Detail) == 0 {
return e.Message
}
return e.Message + "(" + e.Detail + ")"
 }
 
-func (e Error) Marshal() []byte {
+func (e *Error) Marshal() []byte {
bs, _ := json.Marshal(e)
return bs
 }
 
-func (e Error) StatusCode() int {
+func (e *Error) StatusCode() int {
return int(e.Code / 1000)
 }
 
-func (e Error) InternalError() bool {
+func (e *Error) InternalError() bool {
if e.Code >= 50 {
return true
}
@@ -125,6 +126,10 @@ func NewError(code int32, detail string) *Error {
}
 }
 
+func NewErrorf(code int32, format string, args ...interface{}) *Error {
+   return NewError(code, fmt.Sprintf(format, args...))
+}
+
 func RegisterErrors(errs map[int32]string) {
for err, msg := range errs {
if err < 40 || err >= 60 {
diff --git a/server/error/error_test.go b/server/error/error_test.go
index da0e6af..1b61ff8 100644
--- a/server/error/error_test.go
+++ b/server/error/error_test.go
@@ -26,4 +26,50 @@ func TestError_StatusCode(t *testing.T) {
if e.StatusCode() != http.StatusServiceUnavailable {
t.Fatalf("TestError_StatusCode %v failed", e)
}
+
+   if !e.InternalError() {
+   t.Fatalf("TestInternalError failed")
+   }
+}
+
+func TestNewError(t *testing.T) {
+   var err error
+   err = NewError(ErrInvalidParams, "test1")
+   if err == nil {
+   t.Fatalf("TestNewError failed")
+   }
+  

[incubator-servicecomb-service-center] branch master updated (0ebf06e -> 0de2c6d)

2018-05-22 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from 0ebf06e   SCB-393 Retry to request etcd too frequently when fail (#352)
 add 5e134b8  Make UI table Data case-sensitive
 new 0de2c6d  Merge pull request #353 from asifdxtreme/master

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.


Summary of changes:
 frontend/app/scripts/languages/locale-en.js|  8 
 .../modules/serviceCenter/controllers/serviceInfoCtrl.js   |  4 ++--
 .../modules/serviceCenter/controllers/servicesListCtrl.js  | 10 +-
 .../scripts/modules/serviceCenter/views/serviceConsumer.html   |  4 ++--
 .../scripts/modules/serviceCenter/views/serviceInstance.html   |  4 ++--
 .../scripts/modules/serviceCenter/views/serviceProvider.html   |  4 ++--
 frontend/app/scripts/views/tableData.html  |  8 
 7 files changed, 21 insertions(+), 21 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] 01/01: Merge pull request #353 from asifdxtreme/master

2018-05-22 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git

commit 0de2c6daf3adb89084c039fcad08aeca300ba79d
Merge: 0ebf06e 5e134b8
Author: Mohammad Asif Siddiqui 
AuthorDate: Tue May 22 12:41:31 2018 +0530

Merge pull request #353 from asifdxtreme/master

SCB-596 Make UI table Data case-sensitive and status color-senstive on 
instance count

 frontend/app/scripts/languages/locale-en.js|  8 
 .../modules/serviceCenter/controllers/serviceInfoCtrl.js   |  4 ++--
 .../modules/serviceCenter/controllers/servicesListCtrl.js  | 10 +-
 .../scripts/modules/serviceCenter/views/serviceConsumer.html   |  4 ++--
 .../scripts/modules/serviceCenter/views/serviceInstance.html   |  4 ++--
 .../scripts/modules/serviceCenter/views/serviceProvider.html   |  4 ++--
 frontend/app/scripts/views/tableData.html  |  8 
 7 files changed, 21 insertions(+), 21 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] branch master updated: SCB-620 Switch to new client gracefully (#362)

2018-05-31 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new b87ea66  SCB-620 Switch to new client gracefully (#362)
b87ea66 is described below

commit b87ea66f7834d893aab7aa864df272e1c5ad9106
Author: little-cui 
AuthorDate: Thu May 31 15:06:46 2018 +0800

SCB-620 Switch to new client gracefully (#362)
---
 server/plugin/infra/registry/etcd/etcd.go | 11 ++-
 1 file changed, 6 insertions(+), 5 deletions(-)

diff --git a/server/plugin/infra/registry/etcd/etcd.go 
b/server/plugin/infra/registry/etcd/etcd.go
index 9243edb..ffe1367 100644
--- a/server/plugin/infra/registry/etcd/etcd.go
+++ b/server/plugin/infra/registry/etcd/etcd.go
@@ -600,13 +600,14 @@ hcLoop:
util.Logger().Errorf(cerr, "re-get etcd client 
%v failed.", c.Endpoints)
continue
}
-   cerr = c.Client.Close()
-   if cerr != nil {
-   util.Logger().Errorf(cerr, "close unavailable 
etcd client failed.")
-   }
-   c.Client = client
 
+   c.Client, client = client, c.Client
util.Logger().Errorf(err, "Auto sync etcd members 
failed and re-connected etcd successfully")
+
+   if cerr = client.Close(); cerr != nil {
+   util.Logger().Errorf(cerr, "close unavailable 
etcd client failed.")
+   }
+   client = nil
}
}
 }

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] 01/01: Merge pull request #363 from asifdxtreme/master

2018-05-31 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git

commit defc5171a3897dac97fd975cbd47e92f525aa400
Merge: b853634 e19247f
Author: Mohammad Asif Siddiqui 
AuthorDate: Fri Jun 1 11:58:57 2018 +0530

Merge pull request #363 from asifdxtreme/master

SCB-460 Add bower_components

 docs/release/Readme.md |   3 +-
 frontend/Readme.md |  11 +-
 frontend/app/bower.json|  35 +
 frontend/app/index.html| 147 ++---
 integration/health-metrics-grafana.json|  15 +++
 scripts/release/licenses/LICENSE-angular   |  21 +++
 scripts/release/licenses/LICENSE-angular-animate   |  21 +++
 scripts/release/licenses/LICENSE-angular-aria  |  21 +++
 scripts/release/licenses/LICENSE-angular-chart.js  |  27 
 scripts/release/licenses/LICENSE-angular-material  |  21 +++
 .../licenses/LICENSE-angular-material-data-table   |  21 +++
 scripts/release/licenses/LICENSE-angular-messages  |  21 +++
 scripts/release/licenses/LICENSE-angular-mocks |  21 +++
 scripts/release/licenses/LICENSE-angular-resource  |  21 +++
 scripts/release/licenses/LICENSE-angular-sanitize  |  21 +++
 .../release/licenses/LICENSE-angular-swagger-ui|  22 +++
 scripts/release/licenses/LICENSE-angular-translate |  21 +++
 .../LICENSE-angular-translate-loader-static-file   |  21 +++
 .../release/licenses/LICENSE-angular-ui-bootstrap  |  22 +++
 scripts/release/licenses/LICENSE-angular-ui-router |  21 +++
 scripts/release/licenses/LICENSE-angular-yamljs|  21 +++
 scripts/release/licenses/LICENSE-bootstrap |  21 +++
 .../release/licenses/LICENSE-bootstrap-less-only   |  21 +++
 scripts/release/licenses/LICENSE-chart.js  |   9 ++
 .../licenses/LICENSE-components-font-awesome   |   7 +
 scripts/release/licenses/LICENSE-jquery|  36 +
 scripts/release/licenses/LICENSE-js-yaml   |  21 +++
 scripts/release/licenses/LICENSE-jszip |  22 +++
 scripts/release/licenses/LICENSE-swagger-ui|  11 ++
 scripts/release/licenses/LICENSE-yaml.js   |  19 +++
 scripts/release/make_release.sh|  14 +-
 server/core/proto/services.pb.go   |  17 +++
 32 files changed, 671 insertions(+), 82 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] branch master updated (b853634 -> defc517)

2018-05-31 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from b853634  Update swagger (#364)
 add 788aab0  SCB-460 Add bower_components
 add 7ec30a7  SCB-460 Add bower.json file
 add 88d8c21  SCB-460 Add license files for binary
 add 00866e8  Remove all the source code and use bower install to install 
dependencies
 add 57a3925  Update the Readme and license
 add e19247f  Add missing license
 new defc517  Merge pull request #363 from asifdxtreme/master

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.


Summary of changes:
 docs/release/Readme.md |   3 +-
 frontend/Readme.md |  11 +-
 frontend/app/bower.json|  35 +
 frontend/app/index.html| 147 ++---
 integration/health-metrics-grafana.json|  15 +++
 .../licenses/{LICENSE-gommon => LICENSE-angular}   |   2 +-
 .../{LICENSE-gommon => LICENSE-angular-animate}|   2 +-
 .../{LICENSE-gommon => LICENSE-angular-aria}   |   2 +-
 scripts/release/licenses/LICENSE-angular-chart.js  |  27 
 ...CENSE-go-colorable => LICENSE-angular-material} |  12 +-
 ...-gommon => LICENSE-angular-material-data-table} |   2 +-
 .../{LICENSE-gommon => LICENSE-angular-messages}   |   2 +-
 .../{LICENSE-gommon => LICENSE-angular-mocks}  |   2 +-
 .../{LICENSE-gommon => LICENSE-angular-resource}   |   2 +-
 .../{LICENSE-gommon => LICENSE-angular-sanitize}   |   2 +-
 .../{LICENSE-gommon => LICENSE-angular-swagger-ui} |   3 +-
 ...ENSE-go-colorable => LICENSE-angular-translate} |  10 +-
 ...> LICENSE-angular-translate-loader-static-file} |  10 +-
 ...E-go-colorable => LICENSE-angular-ui-bootstrap} |  43 +++---
 ...ENSE-go-colorable => LICENSE-angular-ui-router} |  12 +-
 .../{LICENSE-gommon => LICENSE-angular-yamljs} |   4 +-
 .../{LICENSE-go-colorable => LICENSE-bootstrap}|  10 +-
 ...{LICENSE-gommon => LICENSE-bootstrap-less-only} |   2 +-
 .../licenses/{LICENSE-jwt-go => LICENSE-chart.js}  |   4 +-
 ...ENSE-jwt-go => LICENSE-components-font-awesome} |   4 +-
 .../{LICENSE-beorn7-perks => LICENSE-jquery}   |  18 ++-
 .../licenses/{LICENSE-gommon => LICENSE-js-yaml}   |  12 +-
 .../{LICENSE-go-colorable => LICENSE-jszip}|  13 +-
 scripts/release/licenses/LICENSE-swagger-ui|  11 ++
 .../licenses/{LICENSE-rs-cors => LICENSE-yaml.js}  |  12 +-
 scripts/release/make_release.sh|  14 +-
 server/core/proto/services.pb.go   |  17 +++
 32 files changed, 301 insertions(+), 164 deletions(-)
 create mode 100644 frontend/app/bower.json
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-angular} (97%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-angular-animate} (97%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-angular-aria} (97%)
 create mode 100644 scripts/release/licenses/LICENSE-angular-chart.js
 copy scripts/release/licenses/{LICENSE-go-colorable => 
LICENSE-angular-material} (85%)
 copy scripts/release/licenses/{LICENSE-gommon => 
LICENSE-angular-material-data-table} (97%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-angular-messages} 
(97%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-angular-mocks} (97%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-angular-resource} 
(97%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-angular-sanitize} 
(97%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-angular-swagger-ui} 
(97%)
 copy scripts/release/licenses/{LICENSE-go-colorable => 
LICENSE-angular-translate} (86%)
 copy scripts/release/licenses/{LICENSE-go-colorable => 
LICENSE-angular-translate-loader-static-file} (86%)
 copy scripts/release/licenses/{LICENSE-go-colorable => 
LICENSE-angular-ui-bootstrap} (80%)
 copy scripts/release/licenses/{LICENSE-go-colorable => 
LICENSE-angular-ui-router} (85%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-angular-yamljs} (95%)
 copy scripts/release/licenses/{LICENSE-go-colorable => LICENSE-bootstrap} (88%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-bootstrap-less-only} 
(97%)
 copy scripts/release/licenses/{LICENSE-jwt-go => LICENSE-chart.js} (94%)
 copy scripts/release/licenses/{LICENSE-jwt-go => 
LICENSE-components-font-awesome} (95%)
 copy scripts/release/licenses/{LICENSE-beorn7-perks => LICENSE-jquery} (63%)
 copy scripts/release/licenses/{LICENSE-gommon => LICENSE-js-yaml} (86%)
 copy scripts/release/licens

[incubator-servicecomb-service-center] branch master updated (defc517 -> 740181b)

2018-06-01 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from defc517  Merge pull request #363 from asifdxtreme/master
 add 7e310c2  SCB-618 Delete the microservice forcefully
 add b508f9d  Update the Delete Api
 new 740181b  Merge pull request #365 from asifdxtreme/master

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.


Summary of changes:
 frontend/app/apiList/apiList.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] 01/01: Merge pull request #365 from asifdxtreme/master

2018-06-01 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git

commit 740181b6412d8fe3ed8019515454cb05270f3229
Merge: defc517 b508f9d
Author: Mohammad Asif Siddiqui 
AuthorDate: Fri Jun 1 22:45:00 2018 +0530

Merge pull request #365 from asifdxtreme/master

SCB-618 Delete the microservice forcefully

 frontend/app/apiList/apiList.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] 01/01: Merge pull request #366 from asifdxtreme/m2release

2018-06-01 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git

commit 7e72bfc9734f54a045ba7e7ef9b57a8054a816da
Merge: 740181b 859220a
Author: Mohammad Asif Siddiqui 
AuthorDate: Fri Jun 1 22:45:27 2018 +0530

Merge pull request #366 from asifdxtreme/m2release

SCB-634 Prepare m2 release - Release Notes and RAT report

 docs/release/Readme.md |   3 +-
 docs/release/rat-report/Rat-Report-2018-06-01.md   | 349 +
 .../{releaseNotes.md => releaseNotes-1.0.0-m1.md}  |   0
 docs/release/releaseNotes-1.0.0-m2.md  |  39 +++
 4 files changed, 390 insertions(+), 1 deletion(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] branch master updated (740181b -> 7e72bfc)

2018-06-01 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from 740181b  Merge pull request #365 from asifdxtreme/master
 add 859220a  SCB-634 Prepare m2 release
 new 7e72bfc  Merge pull request #366 from asifdxtreme/m2release

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.


Summary of changes:
 docs/release/Readme.md |   3 +-
 ...port-2018-03-08.md => Rat-Report-2018-06-01.md} | 123 -
 .../{releaseNotes.md => releaseNotes-1.0.0-m1.md}  |   0
 docs/release/releaseNotes-1.0.0-m2.md  |  39 +++
 4 files changed, 137 insertions(+), 28 deletions(-)
 copy docs/release/rat-report/{Rat-Report-2018-03-08.md => 
Rat-Report-2018-06-01.md} (75%)
 rename docs/release/{releaseNotes.md => releaseNotes-1.0.0-m1.md} (100%)
 create mode 100644 docs/release/releaseNotes-1.0.0-m2.md

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] 01/01: Merge pull request #367 from asifdxtreme/dockerr

2018-06-01 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git

commit 35070631bc386626cfcafe55e2feb68731127a19
Merge: 7e72bfc e4dc3b4
Author: Mohammad Asif Siddiqui 
AuthorDate: Fri Jun 1 22:46:31 2018 +0530

Merge pull request #367 from asifdxtreme/dockerr

SCB-634 Fix Docker file for m2 release

 DockerGuide.md | 20 
 Dockerfile | 12 
 2 files changed, 24 insertions(+), 8 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] branch master updated (7e72bfc -> 3507063)

2018-06-01 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from 7e72bfc  Merge pull request #366 from asifdxtreme/m2release
 add e4dc3b4  SCB-634 Fix Docker file for m2 release
 new 3507063  Merge pull request #367 from asifdxtreme/dockerr

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.


Summary of changes:
 DockerGuide.md | 20 
 Dockerfile | 12 
 2 files changed, 24 insertions(+), 8 deletions(-)
 create mode 100644 DockerGuide.md

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] annotated tag 1.0.0-m2 updated (3507063 -> a050857)

2018-06-01 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


*** WARNING: tag 1.0.0-m2 was modified! ***

from 3507063  (commit)
  to a050857  (tag)
 tagging 35070631bc386626cfcafe55e2feb68731127a19 (commit)
 replaces 1.0.0-m1
  by asifdxtreme
  on Fri Jun 1 23:01:50 2018 +0530

- Log -
Service-Center 1.0.0-m2 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27215 - in /dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2: ./ rc-01/

2018-06-01 Thread asifdxtreme
Author: asifdxtreme
Date: Fri Jun  1 18:47:32 2018
New Revision: 27215

Log:
Add RC-01 Candidate for Service-Center-1.0.0-m2 Release

Added:
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.asc
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.asc
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512
   (with props)

Added: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
==
Binary file - no diff available.

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 (added)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 Fri Jun  1 18:47:32 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIcBAABCAAGBQJbEY9mAAoJENyT9pa9ek1p4Z0P/1H0kfDL1sY8xP7ZdSdX2jyL
+0D5qxXJtN6qSZdOyfdVw2IGibaWhRm+3bZj7l+OSyXATo1dhUy14QrlQDdXm8o1c
+EuC36MIbqV1GHRBLbC5qlVspHWzxzOFCy4rtTicLWUJf+pee1ihzDUVeYygouwu4
+lxSFyzx83dtswXmBOvv2TVLOXtVJXLL3qzAPOhLDhaAQQhMV+XzlaZuBID0nnXGb
+Z5eb45ztPI2E5NACQB3yywj1vORPYl/6S8CbLtcHjlHe9fLM6XPWBLPMuBMYezUU
+HXrLrACXccPvZ6VYYwapJbXkI/dDiD6yn2u7dgJaJ582kcjqVAPhQFa2yec0m+mz
+rJieVjNahBc5A5EdrS9nQ2re3NvK0uJ0MRdvp83eeVkR7cprExaZFCLvrx585hmJ
+it0Zus5c4DNyOT9X/gQsAA1wkrY67YeuEY0J+ys69b2dQYOZFCyfZ/9SNbIJgZLX
+NUJPztq/Lqn1HRSl5+qkgE659mUhbnYNRzo2cFQZPNLquJO1l6E9IYwjGbGW/pt9
+RyAbUQSeEpwd6M4jkbbO2Ol4ne/PdFSuVUGoi+W4k/U/qKS3Ny8OXdmbOHAGeQG2
+jty3UVChXvXhWsgCmD31FzHIzcovMlKk7k59pszMn6jVwNxl89HN+d9S19scEvOH
+cyGEG64g28mKBSbwd50h
+=h1IP
+-END PGP SIGNATURE-

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
--
svn:eol-style = native

Added: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 (added)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 Fri Jun  1 18:47:32 2018
@@ -0,0 +1,3 @@
+apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz: 
+34E99302 6011BBA8 5703BD10 5DAE7F7F 7F0E28C8 C616C16E A90B61BA 6C5B5918 
9BFC7470
+ 27A0D56A 45984019 75B7FFD0 2509C563 14425CFD 5D6F2AB7 C6218C46

Propchange: 
dev/incubator

[incubator-servicecomb-saga] branch master updated: Cut 0.2.0 Release

2018-06-01 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git


The following commit(s) were added to refs/heads/master by this push:
 new 8d02c7b  Cut 0.2.0 Release
8d02c7b is described below

commit 8d02c7b1f1f4457b897ad2f574dd5f803fb5df87
Author: asifdxtreme 
AuthorDate: Sat Jun 2 01:22:36 2018 +0530

Cut 0.2.0 Release
---
 acceptance-tests/acceptance-dubbo-demo/pom.xml |  2 +-
 .../acceptance-spring-cloud-demo/pom.xml   |  2 +-
 acceptance-tests/pom.xml   |  2 +-
 alpha/alpha-core/pom.xml   |  2 +-
 alpha/alpha-server/pom.xml |  2 +-
 alpha/pom.xml  |  2 +-
 docker-build-config/pom.xml|  2 +-
 integration-tests/coverage-aggregate/pom.xml   |  4 ++--
 integration-tests/pack-tests/pom.xml   |  2 +-
 integration-tests/pom.xml  |  2 +-
 omega/omega-connector/omega-connector-grpc/pom.xml |  2 +-
 omega/omega-connector/pom.xml  |  2 +-
 omega/omega-context/pom.xml|  2 +-
 omega/omega-format/pom.xml |  2 +-
 omega/omega-spring-starter/pom.xml |  2 +-
 omega/omega-spring-tx/pom.xml  |  2 +-
 omega/omega-transaction/pom.xml|  2 +-
 .../omega-transport/omega-transport-dubbo/pom.xml  |  2 +-
 .../omega-transport-resttemplate/pom.xml   |  2 +-
 .../omega-transport-servicecomb/pom.xml|  2 +-
 omega/omega-transport/pom.xml  |  2 +-
 omega/pom.xml  |  6 ++---
 pack-common/pom.xml|  2 +-
 pack-contracts/pack-contract-grpc/pom.xml  |  2 +-
 pack-contracts/pom.xml |  2 +-
 pom.xml| 26 +++---
 saga-demo/pom.xml  |  2 +-
 saga-demo/saga-dubbo-demo/pom.xml  |  4 ++--
 saga-demo/saga-dubbo-demo/service-api/pom.xml  |  4 ++--
 saga-demo/saga-dubbo-demo/service-pub/pom.xml  |  2 +-
 saga-demo/saga-dubbo-demo/servicea/pom.xml |  2 +-
 saga-demo/saga-dubbo-demo/serviceb/pom.xml |  4 ++--
 saga-demo/saga-dubbo-demo/servicec/pom.xml |  4 ++--
 saga-demo/saga-spring-cloud-demo/booking/pom.xml   |  2 +-
 saga-demo/saga-spring-cloud-demo/car/pom.xml   |  2 +-
 saga-demo/saga-spring-cloud-demo/hotel/pom.xml |  2 +-
 saga-demo/saga-spring-cloud-demo/pom.xml   |  2 +-
 saga-distribution/pom.xml  |  2 +-
 saga-persistence/pom.xml   |  2 +-
 saga-persistence/saga-persistence-jpa/pom.xml  |  2 +-
 40 files changed, 59 insertions(+), 59 deletions(-)

diff --git a/acceptance-tests/acceptance-dubbo-demo/pom.xml 
b/acceptance-tests/acceptance-dubbo-demo/pom.xml
index 47f61d1..b0200f5 100644
--- a/acceptance-tests/acceptance-dubbo-demo/pom.xml
+++ b/acceptance-tests/acceptance-dubbo-demo/pom.xml
@@ -22,7 +22,7 @@
   
 acceptance-tests
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
   Saga:Acceptance Tests::DubboDemo
diff --git a/acceptance-tests/acceptance-spring-cloud-demo/pom.xml 
b/acceptance-tests/acceptance-spring-cloud-demo/pom.xml
index c9f4888..ec8a8aa 100644
--- a/acceptance-tests/acceptance-spring-cloud-demo/pom.xml
+++ b/acceptance-tests/acceptance-spring-cloud-demo/pom.xml
@@ -22,7 +22,7 @@
   
 acceptance-tests
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/acceptance-tests/pom.xml b/acceptance-tests/pom.xml
index 8572a0f..cdbb3c6 100644
--- a/acceptance-tests/pom.xml
+++ b/acceptance-tests/pom.xml
@@ -22,7 +22,7 @@
   
 saga
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/alpha/alpha-core/pom.xml b/alpha/alpha-core/pom.xml
index a34b415..224c848 100644
--- a/alpha/alpha-core/pom.xml
+++ b/alpha/alpha-core/pom.xml
@@ -22,7 +22,7 @@
   
 alpha
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/alpha/alpha-server/pom.xml b/alpha/alpha-server/pom.xml
index c4a7bd5..1aae23e 100644
--- a/alpha/alpha-server/pom.xml
+++ b/alpha/alpha-server/pom.xml
@@ -22,7 +22,7 @@
   
 alpha
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/alpha/pom.xml b/alpha/pom.xml
index 5bb75d1..d7b0911 100644
--- a/alpha/pom.xml
+++ b/alpha/pom.xml
@@ -22,7 +22,7 @@
   
 saga
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/docker-build-config/pom.xml b/docker-build-config/pom.xml
index 782771e..3d7aef2 100644
--- a/docker-build-config/pom.xml
+++ b/docker-build-config/pom.xml
@@ -20,7 +20,7 @@
   
 saga

[incubator-servicecomb-service-center] branch master updated: Update build scripts

2018-06-01 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new f25fa18  Update build scripts
f25fa18 is described below

commit f25fa18ba053e239dc842baafe39cbf8e8217a8a
Author: Mohammad Asif Siddiqui 
AuthorDate: Sat Jun 2 01:31:02 2018 +0530

Update build scripts
---
 scripts/release/README.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/scripts/release/README.md b/scripts/release/README.md
index 64427c2..6379b48 100644
--- a/scripts/release/README.md
+++ b/scripts/release/README.md
@@ -20,14 +20,14 @@ gvt restore
 
 ```
 # bash -x scripts/release/make_release.sh OS_NAME VERSION_NUMBER PACKAGE_NUMBER
-bash -x scripts/release/make_release.sh linux 1.0.0 1.0.0-m1
+bash -x scripts/release/make_release.sh linux 1.0.0 1.0.0-m2
 ```
 
  Windows Release
 
 ```
 # bash -x scripts/release/make_release.sh OS_NAME VERSION_NUMBER PACKAGE_NUMBER
-bash -x scripts/release/make_release.sh windows 1.0.0 1.0.0-m1
+bash -x scripts/release/make_release.sh windows 1.0.0 1.0.0-m2
 ```
 
 

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-saga] branch master updated: Fix JavaDoc Error

2018-06-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git


The following commit(s) were added to refs/heads/master by this push:
 new 2314887  Fix JavaDoc Error
2314887 is described below

commit 231488741261d4832113ae9b56f5d6da55adf21f
Author: Mohammad Asif Siddiqui 
AuthorDate: Sat Jun 2 14:16:59 2018 +0530

Fix JavaDoc Error
---
 .../java/org/apache/servicecomb/saga/demo/dubbo/pub/IInvokeCode.java | 1 -
 1 file changed, 1 deletion(-)

diff --git 
a/saga-demo/saga-dubbo-demo/service-pub/src/main/java/org/apache/servicecomb/saga/demo/dubbo/pub/IInvokeCode.java
 
b/saga-demo/saga-dubbo-demo/service-pub/src/main/java/org/apache/servicecomb/saga/demo/dubbo/pub/IInvokeCode.java
index 96ab819..1b94ffd 100644
--- 
a/saga-demo/saga-dubbo-demo/service-pub/src/main/java/org/apache/servicecomb/saga/demo/dubbo/pub/IInvokeCode.java
+++ 
b/saga-demo/saga-dubbo-demo/service-pub/src/main/java/org/apache/servicecomb/saga/demo/dubbo/pub/IInvokeCode.java
@@ -18,7 +18,6 @@ package org.apache.servicecomb.saga.demo.dubbo.pub;
 
 /**
  * a invoke code describe a test scenario
- * @date 05/05/2018 3:27 PM
  */
 public interface IInvokeCode {
   String Ab_description = "A->B, success";

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-saga] branch master updated (2314887 -> 0c73834)

2018-06-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git.


 discard 2314887  Fix JavaDoc Error
 discard 8d02c7b  Cut 0.2.0 Release
 new 0c73834  Cut 0.2.0 Release

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (2314887)
\
 N -- N -- N   refs/heads/master (0c73834)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

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.


Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-saga] 01/01: Cut 0.2.0 Release

2018-06-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git

commit 0c73834576675519f2cf1da78fe39d6a026b1978
Author: asifdxtreme 
AuthorDate: Sat Jun 2 01:22:36 2018 +0530

Cut 0.2.0 Release
---
 acceptance-tests/acceptance-dubbo-demo/pom.xml |  2 +-
 .../acceptance-spring-cloud-demo/pom.xml   |  2 +-
 acceptance-tests/pom.xml   |  2 +-
 alpha/alpha-core/pom.xml   |  2 +-
 alpha/alpha-server/pom.xml |  2 +-
 alpha/pom.xml  |  2 +-
 docker-build-config/pom.xml|  2 +-
 integration-tests/coverage-aggregate/pom.xml   |  4 ++--
 integration-tests/pack-tests/pom.xml   |  2 +-
 integration-tests/pom.xml  |  2 +-
 omega/omega-connector/omega-connector-grpc/pom.xml |  2 +-
 omega/omega-connector/pom.xml  |  2 +-
 omega/omega-context/pom.xml|  2 +-
 omega/omega-format/pom.xml |  2 +-
 omega/omega-spring-starter/pom.xml |  2 +-
 omega/omega-spring-tx/pom.xml  |  2 +-
 omega/omega-transaction/pom.xml|  2 +-
 .../omega-transport/omega-transport-dubbo/pom.xml  |  2 +-
 .../omega-transport-resttemplate/pom.xml   |  2 +-
 .../omega-transport-servicecomb/pom.xml|  2 +-
 omega/omega-transport/pom.xml  |  2 +-
 omega/pom.xml  |  6 ++---
 pack-common/pom.xml|  2 +-
 pack-contracts/pack-contract-grpc/pom.xml  |  2 +-
 pack-contracts/pom.xml |  2 +-
 pom.xml| 26 +++---
 saga-demo/pom.xml  |  2 +-
 saga-demo/saga-dubbo-demo/pom.xml  |  4 ++--
 saga-demo/saga-dubbo-demo/service-api/pom.xml  |  4 ++--
 saga-demo/saga-dubbo-demo/service-pub/pom.xml  |  2 +-
 .../saga/demo/dubbo/pub/IInvokeCode.java   |  1 -
 saga-demo/saga-dubbo-demo/servicea/pom.xml |  2 +-
 saga-demo/saga-dubbo-demo/serviceb/pom.xml |  4 ++--
 saga-demo/saga-dubbo-demo/servicec/pom.xml |  4 ++--
 saga-demo/saga-spring-cloud-demo/booking/pom.xml   |  2 +-
 saga-demo/saga-spring-cloud-demo/car/pom.xml   |  2 +-
 saga-demo/saga-spring-cloud-demo/hotel/pom.xml |  2 +-
 saga-demo/saga-spring-cloud-demo/pom.xml   |  2 +-
 saga-distribution/pom.xml  |  2 +-
 saga-persistence/pom.xml   |  2 +-
 saga-persistence/saga-persistence-jpa/pom.xml  |  2 +-
 41 files changed, 59 insertions(+), 60 deletions(-)

diff --git a/acceptance-tests/acceptance-dubbo-demo/pom.xml 
b/acceptance-tests/acceptance-dubbo-demo/pom.xml
index 47f61d1..b0200f5 100644
--- a/acceptance-tests/acceptance-dubbo-demo/pom.xml
+++ b/acceptance-tests/acceptance-dubbo-demo/pom.xml
@@ -22,7 +22,7 @@
   
 acceptance-tests
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
   Saga:Acceptance Tests::DubboDemo
diff --git a/acceptance-tests/acceptance-spring-cloud-demo/pom.xml 
b/acceptance-tests/acceptance-spring-cloud-demo/pom.xml
index c9f4888..ec8a8aa 100644
--- a/acceptance-tests/acceptance-spring-cloud-demo/pom.xml
+++ b/acceptance-tests/acceptance-spring-cloud-demo/pom.xml
@@ -22,7 +22,7 @@
   
 acceptance-tests
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/acceptance-tests/pom.xml b/acceptance-tests/pom.xml
index 8572a0f..cdbb3c6 100644
--- a/acceptance-tests/pom.xml
+++ b/acceptance-tests/pom.xml
@@ -22,7 +22,7 @@
   
 saga
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/alpha/alpha-core/pom.xml b/alpha/alpha-core/pom.xml
index a34b415..224c848 100644
--- a/alpha/alpha-core/pom.xml
+++ b/alpha/alpha-core/pom.xml
@@ -22,7 +22,7 @@
   
 alpha
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/alpha/alpha-server/pom.xml b/alpha/alpha-server/pom.xml
index c4a7bd5..1aae23e 100644
--- a/alpha/alpha-server/pom.xml
+++ b/alpha/alpha-server/pom.xml
@@ -22,7 +22,7 @@
   
 alpha
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/alpha/pom.xml b/alpha/pom.xml
index 5bb75d1..d7b0911 100644
--- a/alpha/pom.xml
+++ b/alpha/pom.xml
@@ -22,7 +22,7 @@
   
 saga
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0
 
diff --git a/docker-build-config/pom.xml b/docker-build-config/pom.xml
index 782771e..3d7aef2 100644
--- a/docker-build-config/pom.xml
+++ b/docker-build-config/pom.xml
@@ -20,7 +20,7 @@
   
 saga
 org.apache.servicecomb.saga
-0.2.0-SNAPSHOT
+0.2.0
   
   4.0.0

[incubator-servicecomb-saga] annotated tag 0.2.0 updated (0c73834 -> fdc0ee4)

2018-06-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 0.2.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git.


*** WARNING: tag 0.2.0 was modified! ***

from 0c73834  (commit)
  to fdc0ee4  (tag)
 tagging 0c73834576675519f2cf1da78fe39d6a026b1978 (commit)
 replaces 0.1.0
  by asifdxtreme
  on Sat Jun 2 14:21:54 2018 +0530

- Log -
Saga 0.2.0 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27226 - in /dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0: ./ rc-01/

2018-06-02 Thread asifdxtreme
Author: asifdxtreme
Date: Sat Jun  2 10:55:27 2018
New Revision: 27226

Log:
Upload the ServiceComb-Saga 0.2.0 RC-01

Added:
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.sha512
   (with props)

Added: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 (added)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 Sat Jun  2 10:55:27 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIcBAABCAAGBQJbEnYhAAoJENyT9pa9ek1p57EQAKwRTQq4w2XcCldN+RS0Fl78
+lj3wo4Zxmw9PxONzebrMujF6/hLzm6krS04iYDCNp7RmCTd5ekxRei93Q8WIeqwF
+lXJ4joAQLE2gw+UeiPkejMlM6basABjm1uu/zQBFWc3HXVEgXQYYJ/x5l+8gnyA9
+AAeS70FfRoND9/MNmJeuJQHACEFTBoVkk5hjvh7Gu2VrDiU08DG1fdYYG8hfWk/t
+GfZzGgwwN9+2GQd8s4+pjjgUfYPs078Ng470zPcLWtS1zonJ89Az6tGUOiKWC+Iu
+QfcrbXKVC+Q86UDM4OPkrdj3bmTOjmvdjw4T47Yl6/cmHnL2Ly7JJMoO4ahBhiY9
+NS1yG+L73itMPD+k7QcFhxpqV9UegmUDElW8qupmZBHWeEvp9yE7gYeCSmgVY5a3
+ws3RY4H8Sr+N3Pyepbvivs3hhp4659b/PkCfXx+heFa/7qNGx8mKohybeq5D/kc1
+HfkRaaxYdAmnHg52tDUViF8wqf5tOWJVwl5wHQQsHwWDOVF4tXkAb6NoAOASJ1oK
+lewNMnE2Sa52MZ1f1fMvRr4gOkS5nmhV/+ginxa8ltqo0aEPxdcWzJd+mQTbmwfy
+zkr81KYxDO8AVCTScOMuENwQVlfRUhCet8KxjKvHYzODG3gohQRPRjJWYUL01Cjh
+YfKvK98Lxg/WrnjT1IAX
+=uaqj
+-END PGP SIGNATURE-

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
--
svn:eol-style = native

Added: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 (added)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 Sat Jun  2 10:55:27 2018
@@ -0,0 +1 @@
+fe55eb65313a842647926ad36da1988e38eff0277a6fde07c6f01920496318015a696f23993c15dbacba13e3f89574e335d6036451f10e37799056f96bcbb822
  apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
--
svn:eol-style = native

Added: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc

svn commit: r27227 - /dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/

2018-06-02 Thread asifdxtreme
Author: asifdxtreme
Date: Sat Jun  2 11:02:14 2018
New Revision: 27227

Log:
Update SHA format

Modified:

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 Sat Jun  2 11:02:14 2018
@@ -1,3 +1 @@
-apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz: 
-34E99302 6011BBA8 5703BD10 5DAE7F7F 7F0E28C8 C616C16E A90B61BA 6C5B5918 
9BFC7470
- 27A0D56A 45984019 75B7FFD0 2509C563 14425CFD 5D6F2AB7 C6218C46
+34e993026011bba85703bd105dae7f7f7f0e28c8c616c16ea90b61ba6c5b59189bfc747027a0d56a4598401975b7ffd02509c56314425cfd5d6f2ab7c6218c46
  apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512
 Sat Jun  2 11:02:14 2018
@@ -1,3 +1 @@
-apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip: 
-045D73B8 54CFF5E5 81F26690 F5FE276E 26C2E867 2B7318BA 65FC77DB F5A11B6A 
32BEBDC7
- 543714D9 4D5806D1 6A8ABD1C A58235C9 63D20FED 755194A3 51C51C36
+045d73b854cff5e581f26690f5fe276e26c2e8672b7318ba65fc77dbf5a11b6a32bebdc7543714d94d5806d16a8abd1ca58235c963d20fed755194a351c51c36
  apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512
 Sat Jun  2 11:02:14 2018
@@ -1,3 +1 @@
-apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz: 
-0F34F523 2246C263 3FABE81F 2EE24835 E861A4CE A07B7DD2 24555E88 88AC917A 
98D84C42
- 5DF6B9DE 04BEEF80 B504E445 C6D22821 0CD40062 FD5BEA8B 96121820
+0f34f5232246c2633fabe81f2ee24835e861a4cea07b7dd224555eac917a98d84c425df6b9de04beef80b504e445c6d228210cd40062fd5bea8b96121820
  apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz




[incubator-servicecomb-service-center] annotated tag 1.0.0-m2 updated (e729a5e -> a550e07)

2018-06-04 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


*** WARNING: tag 1.0.0-m2 was modified! ***

from e729a5e  (commit)
  to a550e07  (tag)
 tagging e729a5ee0faf8bd5db2a1fd2539fc7b62bb66b54 (commit)
 replaces 1.0.0-m1
  by asifdxtreme
  on Mon Jun 4 19:04:04 2018 +0530

- Log -
Service-Center 1.0.0-m2 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-saga] annotated tag 0.2.0 deleted (was fdc0ee4)

2018-06-04 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 0.2.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git.


*** WARNING: tag 0.2.0 was deleted! ***

   tag was  fdc0ee4

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-saga] annotated tag 0.2.0 updated (ae03aeb -> 5c99a0b)

2018-06-04 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 0.2.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git.


*** WARNING: tag 0.2.0 was modified! ***

from ae03aeb  (commit)
  to 5c99a0b  (tag)
 tagging ae03aebb318dfa7d60437f1f6b7672697d8831a1 (commit)
 replaces 0.1.0
  by asifdxtreme
  on Mon Jun 4 19:21:25 2018 +0530

- Log -
Saga 0.2.0 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27254 - /dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/

2018-06-04 Thread asifdxtreme
Author: asifdxtreme
Date: Mon Jun  4 13:55:36 2018
New Revision: 27254

Log:
Update Rc-01 Release

Modified:

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 Mon Jun  4 13:55:36 2018
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIcBAABCAAGBQJbEY9mAAoJENyT9pa9ek1p4Z0P/1H0kfDL1sY8xP7ZdSdX2jyL
-0D5qxXJtN6qSZdOyfdVw2IGibaWhRm+3bZj7l+OSyXATo1dhUy14QrlQDdXm8o1c
-EuC36MIbqV1GHRBLbC5qlVspHWzxzOFCy4rtTicLWUJf+pee1ihzDUVeYygouwu4
-lxSFyzx83dtswXmBOvv2TVLOXtVJXLL3qzAPOhLDhaAQQhMV+XzlaZuBID0nnXGb
-Z5eb45ztPI2E5NACQB3yywj1vORPYl/6S8CbLtcHjlHe9fLM6XPWBLPMuBMYezUU
-HXrLrACXccPvZ6VYYwapJbXkI/dDiD6yn2u7dgJaJ582kcjqVAPhQFa2yec0m+mz
-rJieVjNahBc5A5EdrS9nQ2re3NvK0uJ0MRdvp83eeVkR7cprExaZFCLvrx585hmJ
-it0Zus5c4DNyOT9X/gQsAA1wkrY67YeuEY0J+ys69b2dQYOZFCyfZ/9SNbIJgZLX
-NUJPztq/Lqn1HRSl5+qkgE659mUhbnYNRzo2cFQZPNLquJO1l6E9IYwjGbGW/pt9
-RyAbUQSeEpwd6M4jkbbO2Ol4ne/PdFSuVUGoi+W4k/U/qKS3Ny8OXdmbOHAGeQG2
-jty3UVChXvXhWsgCmD31FzHIzcovMlKk7k59pszMn6jVwNxl89HN+d9S19scEvOH
-cyGEG64g28mKBSbwd50h
-=h1IP
+iQIcBAABCAAGBQJbFULTAAoJENyT9pa9ek1pbHwQAKayoPbWvzo8hKKkBb2jUYdK
+UdVK/C6Z11b4bII3j9jiOyo3UpFPOCHhojnQo/1gusqAQUsXpbdt+gWmsRquXToo
+cnLqQ0p82Xbg1L3XKGpewmmAmzKIJeRcIBO1ghyQwGw9/r1NGcTxsQ9cCy43Mw9H
+NHR7zckwdmigMODuukr0Je/d0yVylsQ529xXHsk6lLhQGtTUJzSi8KjPGaUPirHF
+ES6zSXwrh2L9p6f0GrIxsSPWNP9S43RySOcr0XXR7s9v1kxp4C/EblowIfZw/ANa
+xZOyoOcXzYMwi2+eYC7tVBGvJuAv/xQSEXgMLG2XCeNq1claf84igL+Q32SuXJdc
+305HrYGgInBFJ70Tq6tMjZ3uiHCcRc9D4S73cuiZqiZpgwmMB3N9eqqG7TMnAXIT
+A28geHOKVM1Ey6upe+vT03QH9i/sQSihgrVOYIQYBDjkrZjvxuq4Kvpx8hxMkYs/
+ZXofFOnfRapQY8BxUfkVw5dA9h4PqNPgbxcHETNNmot3dUpfDHzOw4h4R/JDVBlC
+L2+Zv/xlzQkC/ZBFip5sEEnQPZNOFGc542NoByXz2YdiRFNSXRl6G7pMNm0Ylr/N
+erv8ljnCA20h3h4U4N07+9blg1AvQEI02uoXcIeABebyUqlGJ6W3LkUznhyWX3fn
+p3pfzLISiDbWM7Rb5RqS
+=wKFd
 -END PGP SIGNATURE-

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 Mon Jun  4 13:55:36 2018
@@ -1 +1 @@
-34e993026011bba85703bd105dae7f7f7f0e28c8c616c16ea90b61ba6c5b59189bfc747027a0d56a4598401975b7ffd02509c56314425cfd5d6f2ab7c6218c46
  apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
+1628d1bf70cb3abf665f352f8cf2ae1dbccd6fc7307737a229f33d88936d0c8693d334a26cba1d25296f239e0aa823286aec22ffd18b5e7b501076ff583d
  apache-servicecomb-incubating-service-center

svn commit: r27255 - /dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/

2018-06-04 Thread asifdxtreme
Author: asifdxtreme
Date: Mon Jun  4 14:22:54 2018
New Revision: 27255

Log:
Update Saga 0.2.0 RC-01 Release

Modified:

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 Mon Jun  4 14:22:54 2018
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIcBAABCAAGBQJbEnYhAAoJENyT9pa9ek1p57EQAKwRTQq4w2XcCldN+RS0Fl78
-lj3wo4Zxmw9PxONzebrMujF6/hLzm6krS04iYDCNp7RmCTd5ekxRei93Q8WIeqwF
-lXJ4joAQLE2gw+UeiPkejMlM6basABjm1uu/zQBFWc3HXVEgXQYYJ/x5l+8gnyA9
-AAeS70FfRoND9/MNmJeuJQHACEFTBoVkk5hjvh7Gu2VrDiU08DG1fdYYG8hfWk/t
-GfZzGgwwN9+2GQd8s4+pjjgUfYPs078Ng470zPcLWtS1zonJ89Az6tGUOiKWC+Iu
-QfcrbXKVC+Q86UDM4OPkrdj3bmTOjmvdjw4T47Yl6/cmHnL2Ly7JJMoO4ahBhiY9
-NS1yG+L73itMPD+k7QcFhxpqV9UegmUDElW8qupmZBHWeEvp9yE7gYeCSmgVY5a3
-ws3RY4H8Sr+N3Pyepbvivs3hhp4659b/PkCfXx+heFa/7qNGx8mKohybeq5D/kc1
-HfkRaaxYdAmnHg52tDUViF8wqf5tOWJVwl5wHQQsHwWDOVF4tXkAb6NoAOASJ1oK
-lewNMnE2Sa52MZ1f1fMvRr4gOkS5nmhV/+ginxa8ltqo0aEPxdcWzJd+mQTbmwfy
-zkr81KYxDO8AVCTScOMuENwQVlfRUhCet8KxjKvHYzODG3gohQRPRjJWYUL01Cjh
-YfKvK98Lxg/WrnjT1IAX
-=uaqj
+iQIcBAABCAAGBQJbFUm7AAoJENyT9pa9ek1pOPkQALhfPgBICbrh99FMrfgozaJG
+zpqeKfom82jjeBHYfc7DooeTAWk4dnlu3q21b4gQi552R1hHylQY/CSzuVQpeVIv
+QS6dHXnfXN9MojJYRRHv21N/jLrACx9il6fS+EeY9HSKNv+qO0cM88f8xJDq54Qa
+LqNhundef5NZN43DLX467dI/B50XJObSJl2Gnc150y54EcdtTEbBIkFwDYD0baba
+IyBD8WSjNOQyuWQl9pEkPcEfyF/P6QiHM/tpDjIzT23q0//j+AOsdmxiJ5hbGtwn
++K6AfU64+lPfx/7fhnaSyXfnrkl26Si29SmIambvv+lBFK/J3WNSh/ewQdeft08s
+r5uRqwUZ7gcMaHVWM7XfH03eMXl45z+yWSh46f9oEAxS0ZqAXxP0VwIzQH4kuEIF
+n5vpeRhWjV0NuUSF4AsPvYHTu0aqQgBuE1P6nkneRjjpw5yUaZnPcWmmHlTAU77N
+nZUEU9YpPiPgBI04TTPLkoIYkWmMczw83273C19PpybE+EGYs7Q7sC9sqeiY3+cp
+4pbzdwQCayYE2OaSZaZcuJhvrxv+zMqqUp0sJrAnr2tXhQaKXZ0rR0yiaLzc3RnN
+cP+iENJg1dsD0t1nb0cnniWyKp6ss4HEgL8hfa2Uamz63E83Oiikppp2G7A77Jar
+XZKFPLg4iccQKXVIetvT
+=5C14
 -END PGP SIGNATURE-

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 Mon Jun  4 14:22:54 2018
@@ -1 +1 @@
-fe55eb65313a842647926ad36da1988e38eff0277a6fde07c6f01920496318015a696f23993c15dbacba13e3f89574e335d6036451f10e37799056f96bcbb822
  apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
+a4d33ebbd06b32711f613b88191a0af83f8470c7f08edd9fc8a6a7252e2452000ff0fc29ecc07f6a53d3d33febe171cead94fd1aca13735127e57bffa9289d33
  apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0

[incubator-servicecomb-saga] annotated tag 0.2.0 deleted (was 5c99a0b)

2018-06-06 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 0.2.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git.


*** WARNING: tag 0.2.0 was deleted! ***

   tag was  5c99a0b

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-saga] annotated tag 0.2.0 updated (45f87d1 -> b5508e7)

2018-06-06 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 0.2.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git.


*** WARNING: tag 0.2.0 was modified! ***

from 45f87d1  (commit)
  to b5508e7  (tag)
 tagging 45f87d1b5b4eaa029c51dca71717311537bc789a (commit)
 replaces 0.1.0
  by asifdxtreme
  on Wed Jun 6 13:29:35 2018 +0530

- Log -
Saga 0.2.0 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27283 - /dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/

2018-06-06 Thread asifdxtreme
Author: asifdxtreme
Date: Wed Jun  6 10:42:16 2018
New Revision: 27283

Log:
Update Rc-01 for Saga 0.2.0

Modified:

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 Wed Jun  6 10:42:16 2018
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIcBAABCAAGBQJbFUm7AAoJENyT9pa9ek1pOPkQALhfPgBICbrh99FMrfgozaJG
-zpqeKfom82jjeBHYfc7DooeTAWk4dnlu3q21b4gQi552R1hHylQY/CSzuVQpeVIv
-QS6dHXnfXN9MojJYRRHv21N/jLrACx9il6fS+EeY9HSKNv+qO0cM88f8xJDq54Qa
-LqNhundef5NZN43DLX467dI/B50XJObSJl2Gnc150y54EcdtTEbBIkFwDYD0baba
-IyBD8WSjNOQyuWQl9pEkPcEfyF/P6QiHM/tpDjIzT23q0//j+AOsdmxiJ5hbGtwn
-+K6AfU64+lPfx/7fhnaSyXfnrkl26Si29SmIambvv+lBFK/J3WNSh/ewQdeft08s
-r5uRqwUZ7gcMaHVWM7XfH03eMXl45z+yWSh46f9oEAxS0ZqAXxP0VwIzQH4kuEIF
-n5vpeRhWjV0NuUSF4AsPvYHTu0aqQgBuE1P6nkneRjjpw5yUaZnPcWmmHlTAU77N
-nZUEU9YpPiPgBI04TTPLkoIYkWmMczw83273C19PpybE+EGYs7Q7sC9sqeiY3+cp
-4pbzdwQCayYE2OaSZaZcuJhvrxv+zMqqUp0sJrAnr2tXhQaKXZ0rR0yiaLzc3RnN
-cP+iENJg1dsD0t1nb0cnniWyKp6ss4HEgL8hfa2Uamz63E83Oiikppp2G7A77Jar
-XZKFPLg4iccQKXVIetvT
-=5C14
+iQIcBAABCAAGBQJbF7dDAAoJENyT9pa9ek1p0YAP/jqB5C8GpAB8MY+pyhsq935u
+lNSIYdq4P0YXsHtt9hviPmb745HkzBNsVp2tab+qKeU3TgTcaN2GRw0zw+uQ9kVi
+vTtRwB02QZX1hRznpCWQi3p+YGV3kA7AixwAldIWCGdWaqfKHio/AEGEhO/stj/6
+oCjn9qWniUcaBwaVSDdQdKn6nFBhPM4FfDOkmTMc4N6ltQIL+fIZG2+xTyxHzc1+
+Ss/5kMGxGbsK4P9d+1f6aj+nqMTNNBcz0R1lUxnuJnw8Q2qFT93wcTKJo+fawXDq
+RgmuE+j3dcq14ryBXTcuEmmzenL/ZOVuELJueGj77i6SXQTYKHVs7WwPGJU8W0dk
+egZp/YPJCnqpQfj7YaihOGG9gqBQ+7JD44GbPFp+Nh94LYkyrtobk3rGT5EfzZEd
++1QstvK3kVrfKPa3U7SRTkCBgiGnyMMMQT9MsjANJXe+Y/TKN6r3QOZuu++0ZeNj
+zWOsUecb2QljDKzvMJehLfRpb5NVlMbJLaywjEL6D/i8jgwZ2TmbqaIjOfStr9pG
+nFOT94qb9jxLCZRq+rhwo18JIFXFt+8vs6cZpOdyyo28Rsbr7bLlxFdJ+B7giQzt
+XpPEKr6bNrmQUGZmxwnLJS1/5NnKPhJlL2T4dLzZwlHvFHoSEA/9j2mx0bp0CK3X
+h0LElkIDqIIsCdLvSzs1
+=50NA
 -END PGP SIGNATURE-

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 Wed Jun  6 10:42:16 2018
@@ -1 +1 @@
-a4d33ebbd06b32711f613b88191a0af83f8470c7f08edd9fc8a6a7252e2452000ff0fc29ecc07f6a53d3d33febe171cead94fd1aca13735127e57bffa9289d33
  apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
+9fd4335b35ca676f3a8c7b1a14e09d395bb0d08d3acc733816a81b505f5faf86b5454d4d74b95bc2fe0642306ea1a9d1812a76baff840649fc7dc72726f07aa2
  apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0

[incubator-servicecomb-service-center] branch master updated (e729a5e -> 0830e97)

2018-06-07 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from e729a5e  SCB-634 - Fix minor local bugs (#369)
 add a7e  Fix minor issues in release script
 add 28e39ee  SCB-647 Update LICENSE for release 1.0.0-m2
 new 0830e97  Merge pull request #371 from yangbor/master

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.


Summary of changes:
 scripts/release/LICENSE| 332 ++---
 .../{LICENSE-angular => LICENSE-eapache-queue} |   2 +-
 .../{LICENSE-angular => LICENSE-go-logfmt} |   2 +-
 .../{LICENSE-angular => LICENSE-go-resiliency} |   2 +-
 scripts/release/licenses/LICENSE-go-spew   |  15 +
 .../{LICENSE-angular => LICENSE-go-xerial-snappy}  |   2 +-
 .../{LICENSE-golang => LICENSE-klauspost-crc32}|   3 +-
 ...CENSE-angular => LICENSE-zipkin-go-opentracing} |   3 +-
 scripts/release/make_release.sh|  10 +-
 9 files changed, 322 insertions(+), 49 deletions(-)
 copy scripts/release/licenses/{LICENSE-angular => LICENSE-eapache-queue} (97%)
 copy scripts/release/licenses/{LICENSE-angular => LICENSE-go-logfmt} (97%)
 copy scripts/release/licenses/{LICENSE-angular => LICENSE-go-resiliency} (97%)
 create mode 100644 scripts/release/licenses/LICENSE-go-spew
 copy scripts/release/licenses/{LICENSE-angular => LICENSE-go-xerial-snappy} 
(97%)
 copy scripts/release/licenses/{LICENSE-golang => LICENSE-klauspost-crc32} (94%)
 copy scripts/release/licenses/{LICENSE-angular => 
LICENSE-zipkin-go-opentracing} (93%)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] 01/01: Merge pull request #371 from yangbor/master

2018-06-07 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git

commit 0830e97c31ef394e574e4cf09fa5af03b0f12701
Merge: e729a5e 28e39ee
Author: Mohammad Asif Siddiqui 
AuthorDate: Thu Jun 7 12:55:27 2018 +0530

Merge pull request #371 from yangbor/master

[SCB-647] Update LICENSE for release 1.0.0-m2

 scripts/release/LICENSE| 332 ++---
 scripts/release/licenses/LICENSE-eapache-queue |  21 ++
 scripts/release/licenses/LICENSE-go-logfmt |  21 ++
 scripts/release/licenses/LICENSE-go-resiliency |  21 ++
 scripts/release/licenses/LICENSE-go-spew   |  15 +
 scripts/release/licenses/LICENSE-go-xerial-snappy  |  21 ++
 scripts/release/licenses/LICENSE-klauspost-crc32   |  28 ++
 .../release/licenses/LICENSE-zipkin-go-opentracing |  22 ++
 scripts/release/make_release.sh|  10 +-
 9 files changed, 448 insertions(+), 43 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] annotated tag 1.0.0-m2 deleted (was a550e07)

2018-06-07 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


*** WARNING: tag 1.0.0-m2 was deleted! ***

   tag was  a550e07

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] annotated tag 1.0.0-m2 updated (0830e97 -> 7df07da)

2018-06-07 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


*** WARNING: tag 1.0.0-m2 was modified! ***

from 0830e97  (commit)
  to 7df07da  (tag)
 tagging 0830e97c31ef394e574e4cf09fa5af03b0f12701 (commit)
 replaces 1.0.0-m1
  by asifdxtreme
  on Thu Jun 7 13:01:16 2018 +0530

- Log -
Service-Center 1.0.0-m2 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27298 - /dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/

2018-06-07 Thread asifdxtreme
Author: asifdxtreme
Date: Thu Jun  7 08:13:28 2018
New Revision: 27298

Log:
Update RC-01 of Service-Center-1.0.0-m2 Release

Modified:

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 Thu Jun  7 08:13:28 2018
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIcBAABCAAGBQJbFULTAAoJENyT9pa9ek1pbHwQAKayoPbWvzo8hKKkBb2jUYdK
-UdVK/C6Z11b4bII3j9jiOyo3UpFPOCHhojnQo/1gusqAQUsXpbdt+gWmsRquXToo
-cnLqQ0p82Xbg1L3XKGpewmmAmzKIJeRcIBO1ghyQwGw9/r1NGcTxsQ9cCy43Mw9H
-NHR7zckwdmigMODuukr0Je/d0yVylsQ529xXHsk6lLhQGtTUJzSi8KjPGaUPirHF
-ES6zSXwrh2L9p6f0GrIxsSPWNP9S43RySOcr0XXR7s9v1kxp4C/EblowIfZw/ANa
-xZOyoOcXzYMwi2+eYC7tVBGvJuAv/xQSEXgMLG2XCeNq1claf84igL+Q32SuXJdc
-305HrYGgInBFJ70Tq6tMjZ3uiHCcRc9D4S73cuiZqiZpgwmMB3N9eqqG7TMnAXIT
-A28geHOKVM1Ey6upe+vT03QH9i/sQSihgrVOYIQYBDjkrZjvxuq4Kvpx8hxMkYs/
-ZXofFOnfRapQY8BxUfkVw5dA9h4PqNPgbxcHETNNmot3dUpfDHzOw4h4R/JDVBlC
-L2+Zv/xlzQkC/ZBFip5sEEnQPZNOFGc542NoByXz2YdiRFNSXRl6G7pMNm0Ylr/N
-erv8ljnCA20h3h4U4N07+9blg1AvQEI02uoXcIeABebyUqlGJ6W3LkUznhyWX3fn
-p3pfzLISiDbWM7Rb5RqS
-=wKFd
+iQIcBAABCAAGBQJbGOfMAAoJENyT9pa9ek1pVFYP/2SGE+WYSuWyw67x6gBjeSCA
+9ReXO4U9nSPNcfbWPi4EGlpikhYmoZrCKZg22aHPihr21oLQFq26pQETUmGe5/RR
+GFTK0HnrBKo0v49IYyAMUZv1iodp+lk3MTHr3MGPq39tiuWdWgsefY6vsZ+zb38f
+drl2xjFzf51gMWwQDnzH6RvrzG9uRwmPKnUO4EDuJobM7xQiWjAdQlX5VmIusxj2
+i2YiTmxE9WSTYuCcQ19PHh5iUtcs5HEQ0M3IQfWRVEj2dSFGW30hVALeVejaJGLo
+9hUi2C/Z3TXrFYUabkFrN8JcdhB1zzna7ib3YUwaItk/z8QqoSOsRv+1A7Qnov/I
+Z+lHMbsvH9nUecmuM8yTbcvaTSOjgUEBmBU1Ra/t8HX4wIodnOfiFkaID9Jq4dHz
+at5k/+tSJFoOa4eGcpGCASyv7h8Fa0WvsHviOajhXkmt3Ykl21aZn0Q1/U9j3ILR
+V27zIQorHFikGd6ZB662YRXUzTJR6XptnbTMljicEiV11B8AyEaJ65oGtkAlmzSt
+UG7wAAbDXUQF7EVoqNZSR2SLjJ5YXxKJzbgd7h4IfzsL5IpEN14EjEFtePDmCw4j
+FDMIxHH7RFFt3VrLh5z5BT+HpWNk4qeOAMX+n0MUSw+BokSxz4QRZNHAEve47Tdj
+Q5CmdbNBknlIM+mpdrzy
+=qCiq
 -END PGP SIGNATURE-

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 Thu Jun  7 08:13:28 2018
@@ -1 +1 @@
-1628d1bf70cb3abf665f352f8cf2ae1dbccd6fc7307737a229f33d88936d0c8693d334a26cba1d25296f239e0aa823286aec22ffd18b5e7b501076ff583d
  apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
+7c461472d4302aeffa52e73c8b342cc82418312774182284aebd260286209951ee358a62067db784ad6ae5ac896bf570622417bd2e121b8725ef82c7f7a69645
  apache-servicecomb

[incubator-servicecomb-saga] annotated tag 0.2.0 updated (1f3c3d1 -> ab6122d)

2018-06-07 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 0.2.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git.


*** WARNING: tag 0.2.0 was modified! ***

from 1f3c3d1  (commit)
  to ab6122d  (tag)
 tagging 1f3c3d1e61a6c7f40df479a43d28b54f335d84ac (commit)
 replaces 0.1.0
  by asifdxtreme
  on Thu Jun 7 15:29:21 2018 +0530

- Log -
Saga 0.2.0 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-saga] annotated tag 0.2.0 deleted (was b5508e7)

2018-06-07 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 0.2.0
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-saga.git.


*** WARNING: tag 0.2.0 was deleted! ***

   tag was  b5508e7

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27302 - /dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m1/

2018-06-07 Thread asifdxtreme
Author: asifdxtreme
Date: Thu Jun  7 12:53:48 2018
New Revision: 27302

Log:
Update Service-Comb-Saga 0.2.0 RC-01 

Removed:

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m1/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m1-bin.zip

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m1/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m1-bin.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m1/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m1-bin.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m1/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m1-src.zip

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m1/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m1-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m1/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m1-src.zip.sha512



svn commit: r27303 - /dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/

2018-06-07 Thread asifdxtreme
Author: asifdxtreme
Date: Thu Jun  7 13:01:18 2018
New Revision: 27303

Log:
Update Saga 0.2.0 RC-01

Modified:

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 Thu Jun  7 13:01:18 2018
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIcBAABCAAGBQJbF7dDAAoJENyT9pa9ek1p0YAP/jqB5C8GpAB8MY+pyhsq935u
-lNSIYdq4P0YXsHtt9hviPmb745HkzBNsVp2tab+qKeU3TgTcaN2GRw0zw+uQ9kVi
-vTtRwB02QZX1hRznpCWQi3p+YGV3kA7AixwAldIWCGdWaqfKHio/AEGEhO/stj/6
-oCjn9qWniUcaBwaVSDdQdKn6nFBhPM4FfDOkmTMc4N6ltQIL+fIZG2+xTyxHzc1+
-Ss/5kMGxGbsK4P9d+1f6aj+nqMTNNBcz0R1lUxnuJnw8Q2qFT93wcTKJo+fawXDq
-RgmuE+j3dcq14ryBXTcuEmmzenL/ZOVuELJueGj77i6SXQTYKHVs7WwPGJU8W0dk
-egZp/YPJCnqpQfj7YaihOGG9gqBQ+7JD44GbPFp+Nh94LYkyrtobk3rGT5EfzZEd
-+1QstvK3kVrfKPa3U7SRTkCBgiGnyMMMQT9MsjANJXe+Y/TKN6r3QOZuu++0ZeNj
-zWOsUecb2QljDKzvMJehLfRpb5NVlMbJLaywjEL6D/i8jgwZ2TmbqaIjOfStr9pG
-nFOT94qb9jxLCZRq+rhwo18JIFXFt+8vs6cZpOdyyo28Rsbr7bLlxFdJ+B7giQzt
-XpPEKr6bNrmQUGZmxwnLJS1/5NnKPhJlL2T4dLzZwlHvFHoSEA/9j2mx0bp0CK3X
-h0LElkIDqIIsCdLvSzs1
-=50NA
+iQIcBAABCAAGBQJbGSqYAAoJENyT9pa9ek1pYeMP/R717Hl3G04eSCnjELRkq0IV
+oR8bIvWQC5rL1aYDv10qgoz6jdLxD+ZuRpMitrlexMBlUmrc1nidRo8Uorg1HdDg
+KFO1ePr9yWSaHvBu4aVIW/vdVNvMupgNLcgti7UiiapQbhf/v4jsiDOxrWQnfQd0
+DCCD69gmN5awsdZLpOFx2sEeoQPHr3QwpK7qRmvQScwgJi6ll8Lqmdo9/4H6p0xl
+icwYmoqrV8C42QlFu5LvqyOcMuXjffQlBOCoYa0nZL1uhY1S/t+qQSJ1aRxfCllC
+08rSzPFg1qi03fNAr3w0B5AElQ7lrk25elhgjYpjLyBrODZZP8J/NCY/uXkfYUER
+tTcw3N0HW02ev5hVVZfUeJ9UR4WTwpS6kJ+N2835mKdRTfVI2aTGi3ZaX4w3YIaU
+KSJvGRSmPCQeYLrM19u4OSfYEObcOY9XEzCVPeH1vDrG3zfwMJaNIIEPazk1Pf2G
+Vk1fUw4K3b4d0loxEbxl961FUryk3G5OBXdMXt6y6uo6oXSoxMypcLO9/l5WpHSu
+os53NFDdgACCCHCrjgFS3RDIV3AKZ77hGHVBEaZkMNl4zLTK+uxBoWj12D6nRVo/
+Ng6E472qB1iyCCZiI/a2l4pWlupwJ6gI3aFYUTEXXkCLUHiETnIg3mW91NVqQPLj
+nuViR7mrIQu9NBfsCPTc
+=JvbI
 -END PGP SIGNATURE-

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 Thu Jun  7 13:01:18 2018
@@ -1 +1 @@
-9fd4335b35ca676f3a8c7b1a14e09d395bb0d08d3acc733816a81b505f5faf86b5454d4d74b95bc2fe0642306ea1a9d1812a76baff840649fc7dc72726f07aa2
  apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
+d9d75cfcf931686a7c56bbfcb3252733a6bdce69d717731f09541eb280798866139a74ea084e2a2af9a3fbec6f5d2dbdd5c97a62d1e4b68be6a06abe1aead9b5
  apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/rc-01/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc

[incubator-servicecomb-service-center] annotated tag 1.0.0-m2 updated (7cd1cee -> 7c2d3bd)

2018-06-07 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


*** WARNING: tag 1.0.0-m2 was modified! ***

from 7cd1cee  (commit)
  to 7c2d3bd  (tag)
 tagging 7cd1cee229440ea6202e2c9b4be6934296a1a3af (commit)
 replaces 1.0.0-m1
  by asifdxtreme
  on Fri Jun 8 12:05:25 2018 +0530

- Log -
Service-Center 1.0.0-m2 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27320 - /dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/

2018-06-08 Thread asifdxtreme
Author: asifdxtreme
Date: Fri Jun  8 08:54:18 2018
New Revision: 27320

Log:
Update Service-Comb-Service-Center 1.0.0-m2 RC-01

Modified:

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 Fri Jun  8 08:54:18 2018
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIcBAABCAAGBQJbGOfMAAoJENyT9pa9ek1pVFYP/2SGE+WYSuWyw67x6gBjeSCA
-9ReXO4U9nSPNcfbWPi4EGlpikhYmoZrCKZg22aHPihr21oLQFq26pQETUmGe5/RR
-GFTK0HnrBKo0v49IYyAMUZv1iodp+lk3MTHr3MGPq39tiuWdWgsefY6vsZ+zb38f
-drl2xjFzf51gMWwQDnzH6RvrzG9uRwmPKnUO4EDuJobM7xQiWjAdQlX5VmIusxj2
-i2YiTmxE9WSTYuCcQ19PHh5iUtcs5HEQ0M3IQfWRVEj2dSFGW30hVALeVejaJGLo
-9hUi2C/Z3TXrFYUabkFrN8JcdhB1zzna7ib3YUwaItk/z8QqoSOsRv+1A7Qnov/I
-Z+lHMbsvH9nUecmuM8yTbcvaTSOjgUEBmBU1Ra/t8HX4wIodnOfiFkaID9Jq4dHz
-at5k/+tSJFoOa4eGcpGCASyv7h8Fa0WvsHviOajhXkmt3Ykl21aZn0Q1/U9j3ILR
-V27zIQorHFikGd6ZB662YRXUzTJR6XptnbTMljicEiV11B8AyEaJ65oGtkAlmzSt
-UG7wAAbDXUQF7EVoqNZSR2SLjJ5YXxKJzbgd7h4IfzsL5IpEN14EjEFtePDmCw4j
-FDMIxHH7RFFt3VrLh5z5BT+HpWNk4qeOAMX+n0MUSw+BokSxz4QRZNHAEve47Tdj
-Q5CmdbNBknlIM+mpdrzy
-=qCiq
+iQIcBAABCAAGBQJbGilOAAoJENyT9pa9ek1ptJkP/i1Hal+501raalk9vFZ6hYx/
+0eHBUzfylRj7mtzw0ksfuDy3Ml6xhrR3aDGeCwSioB1SIjcRxAbkk/dM6jd9uTGu
+TqyqgDL5dFa6mZH8KBp1G6auuUhPozXmUR9c4PqBUsX4RqFPc56SwiTKMQM2y7KB
+1MX7/mq5NjP1A7WZ5CsLQgNQD7FMj+IG+v9WcWGTlYQz8SSozMMNyaNi9c9ayjDY
+ds9+U1cW6MGcmtIaCJUPHyHkNZZHmXWGXB2lyKrlGvgyhVOldMKcU11LAtjEIoT9
+oAbytV6Pvob1FssgokHFEFOccYm4izz9qIRGLV2WB6tRfLFqii5+fuIlti0GtUy2
+jniurBysJ7sOd5UB0LCe5WJ7P9tIsxV6yOV06J1m2awisddUdNnnRXj7uIorl7dz
+azCs4dvVEC7JKcNStz7miXRLdzwswRvPnEuYJ9uAtfRZ5UWrko1KU75LGhKVzRJr
+KMCgFNbZ6wCI/tlBQK4c93MbzUFMmi3eyQ/FFsiJTzgWApuQxV2Em8fREGxtRS9T
+Agcmty68sSLPGEhzEa6wL0OwHW45ntehzobtwKhdWuwVS5O15MJOO17glv1sRXXR
+2ZNUxQQ1sjtBLqYqkUNsMRQU0a4gLvlnpvXm3/ewIsvCWdYXcFEua+QjhVQ+gVl4
+UHjcNCvICafTwtv7E2+7
+=fe0h
 -END PGP SIGNATURE-

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 Fri Jun  8 08:54:18 2018
@@ -1 +1 @@
-7c461472d4302aeffa52e73c8b342cc82418312774182284aebd260286209951ee358a62067db784ad6ae5ac896bf570622417bd2e121b8725ef82c7f7a69645
  apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
+c91eda2f03c1874ffeafd109fe7d0b09ccbccb715ac33f5f297ade33b962ce56a86d9140b25ca2f290a7b190f98834cdf8298a63a861212f9d41e73383646ea2
  apache-servicecomb

[incubator-servicecomb-service-center] branch master updated (7cd1cee -> b913a2d)

2018-06-08 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from 7cd1cee  SCB-647 Remove third party libraries from vendor (#372)
 add fd19194  SCB-647 Remove unnecessary licenses for go-ecosystem/*
 new b913a2d  Merge pull request #373 from yangbor/master

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.


Summary of changes:
 LICENSE   | 24 
 licenses/LICENSE-grpc-gateway | 27 ---
 2 files changed, 51 deletions(-)
 delete mode 100644 licenses/LICENSE-grpc-gateway

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] 01/01: Merge pull request #373 from yangbor/master

2018-06-08 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git

commit b913a2de1b5f7fb2a42ac719fe5891d5f46f349d
Merge: 7cd1cee fd19194
Author: Mohammad Asif Siddiqui 
AuthorDate: Fri Jun 8 14:47:25 2018 +0530

Merge pull request #373 from yangbor/master

[SCB-647] Remove unnecessary licenses for go-ecosystem/*

 LICENSE   | 24 
 licenses/LICENSE-grpc-gateway | 27 ---
 2 files changed, 51 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] annotated tag 1.0.0-m2 updated (b913a2d -> c9bc672)

2018-06-08 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


*** WARNING: tag 1.0.0-m2 was modified! ***

from b913a2d  (commit)
  to c9bc672  (tag)
 tagging b913a2de1b5f7fb2a42ac719fe5891d5f46f349d (commit)
 replaces 1.0.0-m1
  by asifdxtreme
  on Fri Jun 8 14:47:52 2018 +0530

- Log -
Service-Center 1.0.0-m2 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27321 - /dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/

2018-06-08 Thread asifdxtreme
Author: asifdxtreme
Date: Fri Jun  8 09:35:11 2018
New Revision: 27321

Log:
Update Service-Comb-Service-Center 1.0.0-m2 RC-01

Modified:

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.asc

dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 Fri Jun  8 09:35:11 2018
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIcBAABCAAGBQJbGilOAAoJENyT9pa9ek1ptJkP/i1Hal+501raalk9vFZ6hYx/
-0eHBUzfylRj7mtzw0ksfuDy3Ml6xhrR3aDGeCwSioB1SIjcRxAbkk/dM6jd9uTGu
-TqyqgDL5dFa6mZH8KBp1G6auuUhPozXmUR9c4PqBUsX4RqFPc56SwiTKMQM2y7KB
-1MX7/mq5NjP1A7WZ5CsLQgNQD7FMj+IG+v9WcWGTlYQz8SSozMMNyaNi9c9ayjDY
-ds9+U1cW6MGcmtIaCJUPHyHkNZZHmXWGXB2lyKrlGvgyhVOldMKcU11LAtjEIoT9
-oAbytV6Pvob1FssgokHFEFOccYm4izz9qIRGLV2WB6tRfLFqii5+fuIlti0GtUy2
-jniurBysJ7sOd5UB0LCe5WJ7P9tIsxV6yOV06J1m2awisddUdNnnRXj7uIorl7dz
-azCs4dvVEC7JKcNStz7miXRLdzwswRvPnEuYJ9uAtfRZ5UWrko1KU75LGhKVzRJr
-KMCgFNbZ6wCI/tlBQK4c93MbzUFMmi3eyQ/FFsiJTzgWApuQxV2Em8fREGxtRS9T
-Agcmty68sSLPGEhzEa6wL0OwHW45ntehzobtwKhdWuwVS5O15MJOO17glv1sRXXR
-2ZNUxQQ1sjtBLqYqkUNsMRQU0a4gLvlnpvXm3/ewIsvCWdYXcFEua+QjhVQ+gVl4
-UHjcNCvICafTwtv7E2+7
-=fe0h
+iQIcBAABCAAGBQJbGkyAAAoJENyT9pa9ek1pRsMP/RObaXZkgW2+1h2SEW/W/ZeT
+yV+ojrtU36rPyd3BX92cGv/otkpb1+LNe6PYW81JEZR+9U9ibJHkWVShzRvgwJox
+BwmluhBjXbuRQLfXKPw4WER20YF3BqWQwGwmgBtkS+xBgVheH+w5alJcO5pOrV7Y
+7hO76bEQGrI9xQQ/4Wu91iP0so7yjsIpkV4NNKoE/gOyTlbfU90r5reTFiV0saq4
+aFOxK6pePwb2BOS1FJxC3ONXTWexBRNEjgmw/VeEOJ5dWjb0SMQuV0JFm4hCOkkr
+a50SmdVTtjvYmwWvpSO5KalkenT35wIb5mfyKquavLCjYjDWKzQImXp1IIPC6jKD
+8MO8hZ2F6MY/dsjcNB3QcRanLgCOiXS7IoCEepn/xT66K1XReQJaa/29xKRkSNtt
+1JhpwiQhPwXHq+ozr35chrj3LhgpqYI3J5GIuihuvJcWqVkABa2MX5qmf3e5hU67
+ADpy5aCQUER6ViQevOb/3ZWye8Nnxb+2SBlR8uayUITtKtKQdmh/3DJhlxVNUZTx
+6iYEhkxQP2UHTYNaVXymAUyXigg1AfnBq5RqjB7XB50Mz3mxcD0DyHx6Axg1ff6c
+HbRmI5loH1/VxYXVBd7Xnjoj1P57+rUX7Te79GYSGT1aRH5IBh3RSgeA/wZGgoIL
+dNcAVwIjnlqsorerbOXu
+=CdUx
 -END PGP SIGNATURE-

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/rc-01/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 Fri Jun  8 09:35:11 2018
@@ -1 +1 @@
-c91eda2f03c1874ffeafd109fe7d0b09ccbccb715ac33f5f297ade33b962ce56a86d9140b25ca2f290a7b190f98834cdf8298a63a861212f9d41e73383646ea2
  apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
+983f9f0f13387873d747542df74eed0c7536506db7f914b8e5b96eb6950c4a13df9b6846c53040703ce2d0653e93eb67ca64ff88cfe3dff06f312a144c3a18fe
  apache-servicecomb

[incubator-servicecomb-service-center] branch master updated: Update README.md

2018-06-08 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new cb913ba  Update README.md
cb913ba is described below

commit cb913ba39b69c8161a02593ab13c64a2fd3250d2
Author: Mohammad Asif Siddiqui 
AuthorDate: Fri Jun 8 16:25:54 2018 +0530

Update README.md
---
 scripts/release/README.md | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/scripts/release/README.md b/scripts/release/README.md
index 6379b48..0ba901b 100644
--- a/scripts/release/README.md
+++ b/scripts/release/README.md
@@ -13,9 +13,10 @@ cd 
$GOPATH/src/github.com/apache/incubator-servicecomb-service-center
 ## Download all the dependency
 go get github.com/FiloSottile/gvt
 gvt restore
-
 ```
 
+# Note: [bower](https://www.npmjs.com/package/bower) should be installed 
in this machine
+
  Linux Release
 
 ```

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-java-chassis] branch 1.0.0-m2 deleted (was 6b2fde7)

2018-06-11 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git.


 was 6b2fde7  [SCB-654] bug fix: DiscoveryTree concurrency problems 1.did 
not assign tmpRoot inside lock again 2.because of version overflow, root newer 
than input can not express by: tmpRoot.cacheVersion() > 
inputCache.cacheVersion()

The revisions that were on this branch are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-java-chassis] branch 1.0.0-mX created (now 6b2fde7)

2018-06-11 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch 1.0.0-mX
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git.


  at 6b2fde7  [SCB-654] bug fix: DiscoveryTree concurrency problems 1.did 
not assign tmpRoot inside lock again 2.because of version overflow, root newer 
than input can not express by: tmpRoot.cacheVersion() > 
inputCache.cacheVersion()

No new revisions were added by this update.

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-java-chassis] branch 1.0.0-mX updated: Cut 1.0.0-m2 Release

2018-06-11 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch 1.0.0-mX
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git


The following commit(s) were added to refs/heads/1.0.0-mX by this push:
 new 6bf9aca  Cut 1.0.0-m2 Release
6bf9aca is described below

commit 6bf9acaf6e6ad94d090f856d4ea37a6ca632ba5e
Author: asifdxtreme 
AuthorDate: Mon Jun 11 14:44:56 2018 +0530

Cut 1.0.0-m2 Release
---
 archetypes/business-service-jaxrs/pom.xml  |  2 +-
 .../src/main/resources/archetype-resources/pom.xml |  2 +-
 archetypes/business-service-pojo/pom.xml   |  2 +-
 .../src/main/resources/archetype-resources/pom.xml |  2 +-
 .../business-service-spring-boot-starter/pom.xml   |  2 +-
 .../src/main/resources/archetype-resources/pom.xml |  2 +-
 archetypes/business-service-springmvc/pom.xml  |  2 +-
 .../src/main/resources/archetype-resources/pom.xml |  2 +-
 archetypes/pom.xml |  2 +-
 common/common-javassist/pom.xml|  2 +-
 common/common-protobuf/pom.xml |  2 +-
 common/common-rest/pom.xml |  2 +-
 common/pom.xml |  2 +-
 core/pom.xml   |  2 +-
 coverage-reports/pom.xml   | 44 +-
 demo/demo-crossapp/crossapp-client/pom.xml |  4 +-
 demo/demo-crossapp/crossapp-server/pom.xml |  4 +-
 demo/demo-crossapp/pom.xml |  2 +-
 demo/demo-edge/authentication/pom.xml  |  2 +-
 demo/demo-edge/business-1-1-0/pom.xml  |  4 +-
 demo/demo-edge/business-1.0.0/pom.xml  |  4 +-
 demo/demo-edge/business-2.0.0/pom.xml  |  4 +-
 demo/demo-edge/consumer/pom.xml|  4 +-
 demo/demo-edge/edge-service/pom.xml|  2 +-
 demo/demo-edge/model/pom.xml   |  2 +-
 demo/demo-edge/pom.xml |  2 +-
 demo/demo-jaxrs/jaxrs-client/pom.xml   |  2 +-
 demo/demo-jaxrs/jaxrs-server/pom.xml   |  4 +-
 demo/demo-jaxrs/pom.xml|  2 +-
 demo/demo-local/pom.xml|  2 +-
 demo/demo-multiple/a-client/pom.xml|  2 +-
 demo/demo-multiple/a-server/pom.xml|  2 +-
 demo/demo-multiple/b-client/pom.xml|  2 +-
 demo/demo-multiple/b-server/pom.xml|  2 +-
 demo/demo-multiple/multiple-client/pom.xml |  4 +-
 demo/demo-multiple/multiple-server/pom.xml |  4 +-
 demo/demo-multiple/pom.xml | 10 +--
 demo/demo-pojo/pojo-client/pom.xml |  4 +-
 demo/demo-pojo/pojo-server/pom.xml |  4 +-
 demo/demo-pojo/pojo-tests/pom.xml  |  2 +-
 demo/demo-pojo/pom.xml |  2 +-
 demo/demo-schema/pom.xml   |  2 +-
 demo/demo-server-servlet/pom.xml   |  2 +-
 demo/demo-signature/pom.xml|  2 +-
 .../demo-spring-boot-discovery-client/pom.xml  |  4 +-
 .../demo-spring-boot-discovery-server/pom.xml  |  4 +-
 .../demo-spring-boot-zuul-proxy/pom.xml|  4 +-
 demo/demo-spring-boot-discovery/pom.xml|  2 +-
 .../demo-spring-boot-jaxrs-client/pom.xml  |  4 +-
 .../demo-spring-boot-jaxrs-server/pom.xml  |  4 +-
 .../demo-spring-boot-springmvc-client/pom.xml  |  2 +-
 .../demo-spring-boot-springmvc-server/pom.xml  |  2 +-
 demo/demo-spring-boot-provider/pom.xml |  2 +-
 .../demo-spring-boot-pojo-client/pom.xml   |  4 +-
 .../demo-spring-boot-pojo-server/pom.xml   |  4 +-
 demo/demo-spring-boot-transport/pom.xml|  2 +-
 demo/demo-springmvc/pom.xml|  2 +-
 demo/demo-springmvc/springmvc-client/pom.xml   |  4 +-
 demo/demo-springmvc/springmvc-server/pom.xml   |  4 +-
 demo/docker-build-config/pom.xml   |  2 +-
 demo/docker-run-config/pom.xml |  2 +-
 demo/perf/pom.xml  |  2 +-
 demo/pom.xml   | 28 +++
 dynamic-config/config-apollo/pom.xml   |  2 +-
 dynamic-config/config-cc/pom.xml   |  2 +-
 dynamic-config/pom.xml |  2 +-
 edge/edge-core/pom.xml |  2 +-
 edge/pom.xml   |  2 +-
 foundations/foundation-common/pom.xml  |  2 +-
 foundations/foundation-config/pom.xml  |  2 +-
 foundations/foundation-metrics/pom.xml |  2 +-
 foundations/foundation-ssl/pom.xml |  2 +-
 foundations/foundation-test-scaffolding/pom.xml|  2 +-
 foundations/foundation-vertx/pom.xml   |  2 +-
 foundations/pom.xml

[incubator-servicecomb-java-chassis] annotated tag 1.0.0-m2 updated (6bf9aca -> 5f48db0)

2018-06-11 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git.


*** WARNING: tag 1.0.0-m2 was modified! ***

from 6bf9aca  (commit)
  to 5f48db0  (tag)
 tagging 6bf9acaf6e6ad94d090f856d4ea37a6ca632ba5e (commit)
 replaces 0.4.0
  by asifdxtreme
  on Mon Jun 11 14:49:38 2018 +0530

- Log -
Java-Chassis 1.0.0-m2 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27375 - in /dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2: ./ rc-01/

2018-06-11 Thread asifdxtreme
Author: asifdxtreme
Date: Mon Jun 11 12:12:44 2018
New Revision: 27375

Log:
Update RC Candidate for Java-Chassis

Added:
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.asc
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.sha512
   (with props)

Added: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 (added)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 Mon Jun 11 12:12:44 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIcBAABCAAGBQJbHmK3AAoJENyT9pa9ek1pkSAQAJOLrN8u0xiYgNseIlbvCiIa
+pp8FhP0y23U0YvKKI5O9oOf40/GD0W3a+WuhqSxTTL5xBgQ7teNwUXhrLP4tWXXS
+CdC3earL6eUGzZYIUdWUcf/uycuu4LGP2mDiuQipUgyaegWbkFSKIFNdLhaB5H9I
+4vOSBeFygeq6/k0NRk7xseJkAyQl8gzBv8cHBZ5iHiayoIXFXJ2tmXbIzv78j36S
+2dWbbszIEcyJiBaecqGHvYrErvn2pVqJLcMcLscKqzJtk+z7KRxiCrQXHPg1kQ4J
+D19y6LkBTM39TSbGhiSw2f13fpefes6iduGJfPt5m/JNqLOt0FSSzdGdKAmLrWhI
+iataJyj+fl92hGBssWSJv418S+0zuUbA3/tHRhk4isrbXIdkuF4Zc3Gqs/YGIKd/
+POkI6d3OGYkTbAZKpAaBbiRGRygcT4XR4guTLbeop2dCr9CAGKD2WDdwATwhzg+6
+AkILmTJqS9lejqw+JKrgb/G5Heifgejn/c1a0w3ItrK493T71WEo1nqUbfsZQqL8
+aOEDf5bMPUvUSpYx65S1fngZ91YZdaYgI5aRceEyViCOcP5Ghd62dHQg2VZKJ2Rl
+0DB6gzLox3MzbbTx/lPaigGKzDdOZ0ch5qJQeXratF/SUsbqrueJOofttIhgpG7a
+R1112joFPWy2nuZPVZ58
+=aG09
+-END PGP SIGNATURE-

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
--
svn:eol-style = native

Added: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 (added)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 Mon Jun 11 12:12:44 2018
@@ -0,0 +1 @@
+9d4041e1e7739081871c974c74bf2fac5166570655fdb897437ee8d9920060d4e830beba6caeb103294229295a942c06af09fd3846ef2d6622608e963ce71574
  apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
--
svn:eol-style = native

Added: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/servicecomb/incubator

[incubator-servicecomb-java-chassis] annotated tag 1.0.0-m2 deleted (was 5f48db0)

2018-06-12 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git.


*** WARNING: tag 1.0.0-m2 was deleted! ***

   tag was  5f48db0

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-java-chassis] annotated tag 1.0.0-m2 updated (abc08ce -> bc05736)

2018-06-12 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git.


*** WARNING: tag 1.0.0-m2 was modified! ***

from abc08ce  (commit)
  to bc05736  (tag)
 tagging abc08ce36a50536f67374cb94513659a31e8880d (commit)
 replaces 0.4.0
  by asifdxtreme
  on Tue Jun 12 13:20:52 2018 +0530

- Log -
Java-Chassis 1.0.0-m2 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27393 - /dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/

2018-06-12 Thread asifdxtreme
Author: asifdxtreme
Date: Tue Jun 12 09:09:31 2018
New Revision: 27393

Log:
Update Service-Comb-Java-Chassis 1.0.0-m2 RC-01

Modified:

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 Tue Jun 12 09:09:31 2018
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIcBAABCAAGBQJbHmK3AAoJENyT9pa9ek1pkSAQAJOLrN8u0xiYgNseIlbvCiIa
-pp8FhP0y23U0YvKKI5O9oOf40/GD0W3a+WuhqSxTTL5xBgQ7teNwUXhrLP4tWXXS
-CdC3earL6eUGzZYIUdWUcf/uycuu4LGP2mDiuQipUgyaegWbkFSKIFNdLhaB5H9I
-4vOSBeFygeq6/k0NRk7xseJkAyQl8gzBv8cHBZ5iHiayoIXFXJ2tmXbIzv78j36S
-2dWbbszIEcyJiBaecqGHvYrErvn2pVqJLcMcLscKqzJtk+z7KRxiCrQXHPg1kQ4J
-D19y6LkBTM39TSbGhiSw2f13fpefes6iduGJfPt5m/JNqLOt0FSSzdGdKAmLrWhI
-iataJyj+fl92hGBssWSJv418S+0zuUbA3/tHRhk4isrbXIdkuF4Zc3Gqs/YGIKd/
-POkI6d3OGYkTbAZKpAaBbiRGRygcT4XR4guTLbeop2dCr9CAGKD2WDdwATwhzg+6
-AkILmTJqS9lejqw+JKrgb/G5Heifgejn/c1a0w3ItrK493T71WEo1nqUbfsZQqL8
-aOEDf5bMPUvUSpYx65S1fngZ91YZdaYgI5aRceEyViCOcP5Ghd62dHQg2VZKJ2Rl
-0DB6gzLox3MzbbTx/lPaigGKzDdOZ0ch5qJQeXratF/SUsbqrueJOofttIhgpG7a
-R1112joFPWy2nuZPVZ58
-=aG09
+iQIcBAABCAAGBQJbH40LAAoJENyT9pa9ek1pA8AP/RxyJVOUd7uLNZX+l/JaJLlh
+cFnz5vECGOyu4ZqPUiqyFug8eWwq8Mxz2zVPyx09dzFqqZTwEFXOop3+UMjsrxBw
+xuGyEo+izkGh3PFAzGs3ULXG3SS9Y0h/nGccA/brJjyNKJvu7cLTVv2jRjw+UKtA
+ecAnXCocLT0MER8mn7sPt3N/6QgvNiBh4i5gCIf51SfzjrIsifcxu2WGFx0dHDe/
+uKtrz/SyhRolrpTZ4Hc1eD4FJkWn1M5V1BaipOdBQTg92ThZghgor+9F9hhwFIIK
+aOGoHtyMB9EImLXG9S2GwsGST5nKXiQVvrGaBNde5oMszqi+Q//hG5zKu6YzqQ0o
+MtsXa6saOK2OItBZhQ/cvUdHFV/Ahce/7Wj3VCTyEeIu2GJiB654DJdoei9Udald
+FTT0KKoBLl6qDq+TuX2U/azS3dgASpWJXi4UBkupilymyI14jEh9UZSInB2SPuyb
+FChAl1L9RYg3dP+P0xNv9zDsdW0jdXEw5H7xz8XVLBt+cpDw9KTY17gkpvHEBWYD
+m8VGRVg387ztr0mffpSoYC+6O/U6QODu5/2aYy/EOBitYXm+H5GKnoFQ0r9n51Ch
+tgFT4FqjQtCGRphlmkUw+CdIi6CHQC3wVBdtub8b0Wzg/pMWG2JzKSokvclzRQ/p
+K5H3dENHpa1gx+Q+HHtO
+=7QE6
 -END PGP SIGNATURE-

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 Tue Jun 12 09:09:31 2018
@@ -1 +1 @@
-9d4041e1e7739081871c974c74bf2fac5166570655fdb897437ee8d9920060d4e830beba6caeb103294229295a942c06af09fd3846ef2d6622608e963ce71574
  apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
+1c9a639ed8d18a87672033863d85569e9564067d43fceb126380510ea80b9d5ccd181af551ceb37f14ddef4f133a5f9da8017c193fec232abb15217210d9b55b
  apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-01/apache-servicecomb-incubating-java-chassis-distribution-1.0.0

[incubator-servicecomb-java-chassis] annotated tag 1.0.0-m2 deleted (was bc05736)

2018-06-14 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git.


*** WARNING: tag 1.0.0-m2 was deleted! ***

   tag was  bc05736

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-java-chassis] annotated tag 1.0.0-m2 updated (e981fcc -> bc67846)

2018-06-14 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git.


*** WARNING: tag 1.0.0-m2 was modified! ***

from e981fcc  (commit)
  to bc67846  (tag)
 tagging e981fcc1e17973c4de4d80216db838d3d4e60168 (commit)
 replaces 0.4.0
  by asifdxtreme
  on Thu Jun 14 16:28:38 2018 +0530

- Log -
Java-Chassis 1.0.0-m2 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27449 - /dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/

2018-06-14 Thread asifdxtreme
Author: asifdxtreme
Date: Thu Jun 14 12:17:23 2018
New Revision: 27449

Log:
Update RC Candidate for Java-Chassis RC-02

Added:
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.asc
   (with props)

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.sha512
   (with props)

Added: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
--
svn:mime-type = application/octet-stream

Added: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 (added)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 Thu Jun 14 12:17:23 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIcBAABCAAGBQJbIlxUAAoJENyT9pa9ek1pt0EP/3PiGtCul+QLMGEX9ITy3zME
+8qV1LZT+R6KNlW+xNXjO0jZgK73Db2sHO+NzhsVPbNbGFCBVabpEYCsMpLdlgtph
+Hu2DBnlGqS314r6WwsX55o71mH1vzhxxdQdZAxGbOUZmb5VqgHYXNwczEjir4sJ5
+nsYkWOoCGFomBKXPGl77aMprXjINdQV8K8jBGJORfRB+3OMVnIBTAoCOPahe1IJ2
+9br8/WyfFnnG/hPfcG2ICIKxS33tDGMvf/lRleBaxY18F6SMMH2HTO1vQId3tyMc
+WcZjsFSsuJD65LcCw1vXJTDHRA0aK7X4L00Bgc9c6IkjA8NpigREIBD89E2lKzbW
+x75duLwIG/uj0PQavV7HI1wQCI6k0doKTQNPSjcTzk58D6MdlSqVi4j/pde3Kc2s
+oLGAGKcJsaqisuAewqSvlTCUm3Ld05Ff+MDmnwI8tMxv+5xkce1V+0mse8X1ldBi
+3W1IhE8cYhuBFMTWDY56LV/zoSjKe9ErulU2pCKIrxShTVpQ6TJKHfscFT7Sbvv5
+An6K+7AbzStKTxBcRS8P6p4Ylk610WKjHz22mv46bvMB7ZsPtm/pFiWVqJ930XJy
+Cxbc45p0txQvyKd1fAi3d1Id+IK9wmZnn45jysJ8ryu1tuVv53jOm0q0RXMExQ9X
+YnOTHY2VJQRZh1orlmNY
+=XQks
+-END PGP SIGNATURE-

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
--
svn:eol-style = native

Added: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 (added)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 Thu Jun 14 12:17:23 2018
@@ -0,0 +1 @@
+e3552af3646f133a19b8251b7f2c763eceaa9357dffa6fdf59db75339da5f1791f209ec02b4f2c771f9de8013c0331d9b321539af504614bd092482884011618
  apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
--
svn:eol-style = native

Added: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip
==
Binary file - no diff available.

Propchange: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java

[incubator-servicecomb-java-chassis] annotated tag 1.0.0-m2 deleted (was bc67846)

2018-06-14 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git.


*** WARNING: tag 1.0.0-m2 was deleted! ***

   tag was  bc67846

The revisions that were on this annotated tag are still contained in
other references; therefore, this change does not discard any commits
from the repository.

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-java-chassis] annotated tag 1.0.0-m2 updated (95e87f4 -> 348a2df)

2018-06-14 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to annotated tag 1.0.0-m2
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-java-chassis.git.


*** WARNING: tag 1.0.0-m2 was modified! ***

from 95e87f4  (commit)
  to 348a2df  (tag)
 tagging 95e87f4791218c45ddb9b8eed0a4073873432034 (commit)
 replaces 0.4.0
  by asifdxtreme
  on Thu Jun 14 20:01:48 2018 +0530

- Log -
Java-Chassis 1.0.0-m2 Release
---


No new revisions were added by this update.

Summary of changes:

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27457 - /dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/

2018-06-14 Thread asifdxtreme
Author: asifdxtreme
Date: Thu Jun 14 15:59:36 2018
New Revision: 27457

Log:
Update RC Candidate for Java-Chassis RC-02

Modified:

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.asc

dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.sha512

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 Thu Jun 14 15:59:36 2018
@@ -1,16 +1,16 @@
 -BEGIN PGP SIGNATURE-
 
-iQIcBAABCAAGBQJbIlxUAAoJENyT9pa9ek1pt0EP/3PiGtCul+QLMGEX9ITy3zME
-8qV1LZT+R6KNlW+xNXjO0jZgK73Db2sHO+NzhsVPbNbGFCBVabpEYCsMpLdlgtph
-Hu2DBnlGqS314r6WwsX55o71mH1vzhxxdQdZAxGbOUZmb5VqgHYXNwczEjir4sJ5
-nsYkWOoCGFomBKXPGl77aMprXjINdQV8K8jBGJORfRB+3OMVnIBTAoCOPahe1IJ2
-9br8/WyfFnnG/hPfcG2ICIKxS33tDGMvf/lRleBaxY18F6SMMH2HTO1vQId3tyMc
-WcZjsFSsuJD65LcCw1vXJTDHRA0aK7X4L00Bgc9c6IkjA8NpigREIBD89E2lKzbW
-x75duLwIG/uj0PQavV7HI1wQCI6k0doKTQNPSjcTzk58D6MdlSqVi4j/pde3Kc2s
-oLGAGKcJsaqisuAewqSvlTCUm3Ld05Ff+MDmnwI8tMxv+5xkce1V+0mse8X1ldBi
-3W1IhE8cYhuBFMTWDY56LV/zoSjKe9ErulU2pCKIrxShTVpQ6TJKHfscFT7Sbvv5
-An6K+7AbzStKTxBcRS8P6p4Ylk610WKjHz22mv46bvMB7ZsPtm/pFiWVqJ930XJy
-Cxbc45p0txQvyKd1fAi3d1Id+IK9wmZnn45jysJ8ryu1tuVv53jOm0q0RXMExQ9X
-YnOTHY2VJQRZh1orlmNY
-=XQks
+iQIcBAABCAAGBQJbIo9PAAoJENyT9pa9ek1peosP/0GQ/rmcO+8gqpnBTI+GXjlI
+3IYOFQgGIVDuT2okLnI9rGYG+1vZPoEevpALvZYOh7SskQnDdJWaxsbQGMf1J9z/
+K8rNpBUnJ3VNYEYmjPhW/7zjn9A0WIJ9PdrLvac7MCc9XH6DjhVI92v37bS8IqDc
+mF9FDPY3mYqvIMIm4P58XSp/9nilZx6pVOpNZN7m45cjv8I4uJ9KTQwdO+OEH61G
+K/IZdQsGr/ROr/vK3cF8ZXt3xA4iO47LftSJjFRaz2BiaWMUtU6ET1Z61+qa9Ire
+p1boXxJPLsq3DFr30foIlg/fJIRQDmOTMaMt0UjuqqulQJYQf2pPJ24XlFarnCUA
+hxkOg9Mt6MUGeHIeQJzQVw7f6bVzj8pe9YPHJY20ImZyHlJcY2kdeD3/O6Dk1NQm
+zsEZQXfaAY5Hulk1x5PajU1tKVGKbaigkG5sY0ty4T2EYJCdFXjEx44d45wJ16Jp
+/xtdb7l1XkaH6petiBSii0VA0UCGQFucGaKZm0ameT5GnESSiEqd3JOkavBcCoCD
+DPHQfvDA5nby81peH3H7dXVYKPxhhyUEkDJzNnRe/Ua+WNZpwvEhLb9EtKXlFhOx
+jvdJjUuzU3v+UOUVLXDHgN/e4LFx7wcQ/3vvWvLc4zG/cYjv7wNxI5KIRbZmuKMf
+OIDSzOJCsvSPFEbnvTHh
+=acrH
 -END PGP SIGNATURE-

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
==
--- 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 (original)
+++ 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 Thu Jun 14 15:59:36 2018
@@ -1 +1 @@
-e3552af3646f133a19b8251b7f2c763eceaa9357dffa6fdf59db75339da5f1791f209ec02b4f2c771f9de8013c0331d9b321539af504614bd092482884011618
  apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
+aa94e941170da971dae1238d8345e3c55cefa1dbbafd133c1d3c57dab7427a5dbbf9e8de52805bf4b114f681e4af4f1dc247432ad98bf81092f3c10b0b9eb616
  apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip
==
Binary files - no diff available.

Modified: 
dev/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/rc-02/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2

[incubator-servicecomb-service-center] branch master updated (cb913ba -> 4186089)

2018-06-17 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a change to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git.


from cb913ba  Update README.md
 add 88a538f  Add metrics gatherer package
 add a803dc0  Add metrics gatherer package
 add 7de6287  SCB-670 Check the etcd cluster health when new connection
 add 514beee  Modify the interval of metrics
 new 4186089  Merge pull request #374 from little-cui/cluster

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.


Summary of changes:
 pkg/util/concurrent_map.go|  4 +-
 pkg/util/context.go   |  2 +-
 server/bootstrap/bootstrap.go |  3 +
 server/core/backend/{metric.go => metrics.go} |  0
 server/{service/util => metric}/common.go | 19 --
 server/metric/gatherer.go | 90 +++
 pkg/util/sys.go => server/metric/metrics.go   | 51 +++
 server/plugin/infra/registry/etcd/etcd.go | 28 +
 server/rest/{metric.go => metrics.go} |  0
 9 files changed, 163 insertions(+), 34 deletions(-)
 rename server/core/backend/{metric.go => metrics.go} (100%)
 copy server/{service/util => metric}/common.go (73%)
 create mode 100644 server/metric/gatherer.go
 copy pkg/util/sys.go => server/metric/metrics.go (50%)
 rename server/rest/{metric.go => metrics.go} (100%)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


[incubator-servicecomb-service-center] 01/01: Merge pull request #374 from little-cui/cluster

2018-06-17 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git

commit 418608953b0768795b1742871dc29e2e222681f9
Merge: cb913ba 514beee
Author: Mohammad Asif Siddiqui 
AuthorDate: Sun Jun 17 20:07:44 2018 +0530

Merge pull request #374 from little-cui/cluster

SCB-670 Check the etcd cluster health when new connection

 pkg/util/concurrent_map.go|  4 +-
 pkg/util/context.go   |  2 +-
 server/bootstrap/bootstrap.go |  3 +
 server/core/backend/{metric.go => metrics.go} |  0
 server/metric/common.go   | 32 ++
 server/metric/gatherer.go | 90 +++
 server/metric/metrics.go  | 54 
 server/plugin/infra/registry/etcd/etcd.go | 28 +
 server/rest/{metric.go => metrics.go} |  0
 9 files changed, 210 insertions(+), 3 deletions(-)

-- 
To stop receiving notification emails like this one, please contact
asifdxtr...@apache.org.


svn commit: r27613 - /release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/

2018-06-21 Thread asifdxtreme
Author: asifdxtreme
Date: Thu Jun 21 07:30:24 2018
New Revision: 27613

Log:
Upload Service-Center 1.0.0-m2 Release

Added:
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/

release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
   (with props)

release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
   (with props)

release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
   (with props)

release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip
   (with props)

release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.asc
   (with props)

release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-src.zip.sha512
   (with props)

release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz
   (with props)

release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.asc
   (with props)

release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-windows-amd64.tar.gz.sha512
   (with props)

Added: 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
==
Binary file - no diff available.

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz
--
svn:mime-type = application/octet-stream

Added: 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
==
--- 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 (added)
+++ 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
 Thu Jun 21 07:30:24 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIcBAABCAAGBQJbGkyAAAoJENyT9pa9ek1pRsMP/RObaXZkgW2+1h2SEW/W/ZeT
+yV+ojrtU36rPyd3BX92cGv/otkpb1+LNe6PYW81JEZR+9U9ibJHkWVShzRvgwJox
+BwmluhBjXbuRQLfXKPw4WER20YF3BqWQwGwmgBtkS+xBgVheH+w5alJcO5pOrV7Y
+7hO76bEQGrI9xQQ/4Wu91iP0so7yjsIpkV4NNKoE/gOyTlbfU90r5reTFiV0saq4
+aFOxK6pePwb2BOS1FJxC3ONXTWexBRNEjgmw/VeEOJ5dWjb0SMQuV0JFm4hCOkkr
+a50SmdVTtjvYmwWvpSO5KalkenT35wIb5mfyKquavLCjYjDWKzQImXp1IIPC6jKD
+8MO8hZ2F6MY/dsjcNB3QcRanLgCOiXS7IoCEepn/xT66K1XReQJaa/29xKRkSNtt
+1JhpwiQhPwXHq+ozr35chrj3LhgpqYI3J5GIuihuvJcWqVkABa2MX5qmf3e5hU67
+ADpy5aCQUER6ViQevOb/3ZWye8Nnxb+2SBlR8uayUITtKtKQdmh/3DJhlxVNUZTx
+6iYEhkxQP2UHTYNaVXymAUyXigg1AfnBq5RqjB7XB50Mz3mxcD0DyHx6Axg1ff6c
+HbRmI5loH1/VxYXVBd7Xnjoj1P57+rUX7Te79GYSGT1aRH5IBh3RSgeA/wZGgoIL
+dNcAVwIjnlqsorerbOXu
+=CdUx
+-END PGP SIGNATURE-

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.asc
--
svn:eol-style = native

Added: 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
==
--- 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 (added)
+++ 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512
 Thu Jun 21 07:30:24 2018
@@ -0,0 +1 @@
+983f9f0f13387873d747542df74eed0c7536506db7f914b8e5b96eb6950c4a13df9b6846c53040703ce2d0653e93eb67ca64ff88cfe3dff06f312a144c3a18fe
  apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-service-center/1.0.0-m2/apache-servicecomb-incubating-service-center-1.0.0-m2-linux-amd64.tar.gz.sha512

svn commit: r27614 - /release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/

2018-06-21 Thread asifdxtreme
Author: asifdxtreme
Date: Thu Jun 21 07:39:57 2018
New Revision: 27614

Log:
Upload Saga-0.2.0 Release

Added:
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/

release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
   (with props)

release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
   (with props)

release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
   (with props)

release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip
   (with props)

release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc
   (with props)

release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.sha512
   (with props)

Added: 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
==
Binary file - no diff available.

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip
--
svn:mime-type = application/octet-stream

Added: 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
==
--- 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 (added)
+++ 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
 Thu Jun 21 07:39:57 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIcBAABCAAGBQJbGSqYAAoJENyT9pa9ek1pYeMP/R717Hl3G04eSCnjELRkq0IV
+oR8bIvWQC5rL1aYDv10qgoz6jdLxD+ZuRpMitrlexMBlUmrc1nidRo8Uorg1HdDg
+KFO1ePr9yWSaHvBu4aVIW/vdVNvMupgNLcgti7UiiapQbhf/v4jsiDOxrWQnfQd0
+DCCD69gmN5awsdZLpOFx2sEeoQPHr3QwpK7qRmvQScwgJi6ll8Lqmdo9/4H6p0xl
+icwYmoqrV8C42QlFu5LvqyOcMuXjffQlBOCoYa0nZL1uhY1S/t+qQSJ1aRxfCllC
+08rSzPFg1qi03fNAr3w0B5AElQ7lrk25elhgjYpjLyBrODZZP8J/NCY/uXkfYUER
+tTcw3N0HW02ev5hVVZfUeJ9UR4WTwpS6kJ+N2835mKdRTfVI2aTGi3ZaX4w3YIaU
+KSJvGRSmPCQeYLrM19u4OSfYEObcOY9XEzCVPeH1vDrG3zfwMJaNIIEPazk1Pf2G
+Vk1fUw4K3b4d0loxEbxl961FUryk3G5OBXdMXt6y6uo6oXSoxMypcLO9/l5WpHSu
+os53NFDdgACCCHCrjgFS3RDIV3AKZ77hGHVBEaZkMNl4zLTK+uxBoWj12D6nRVo/
+Ng6E472qB1iyCCZiI/a2l4pWlupwJ6gI3aFYUTEXXkCLUHiETnIg3mW91NVqQPLj
+nuViR7mrIQu9NBfsCPTc
+=JvbI
+-END PGP SIGNATURE-

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.asc
--
svn:eol-style = native

Added: 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
==
--- 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 (added)
+++ 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
 Thu Jun 21 07:39:57 2018
@@ -0,0 +1 @@
+d9d75cfcf931686a7c56bbfcb3252733a6bdce69d717731f09541eb280798866139a74ea084e2a2af9a3fbec6f5d2dbdd5c97a62d1e4b68be6a06abe1aead9b5
  apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
--
svn:eol-style = native

Added: 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip
==
Binary file - no diff available.

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip
--
svn:mime-type = application/octet-stream

Added: 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.asc
==
--- 
release/incubator/servicecomb/incubator-servicecomb-saga/0.2.0/apache-servicecomb

svn commit: r27626 - /release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/

2018-06-21 Thread asifdxtreme
Author: asifdxtreme
Date: Thu Jun 21 16:35:15 2018
New Revision: 27626

Log:
Upload Java-Chassis 1.0.0-m2 Release

Added:
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
   (with props)

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
   (with props)

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
   (with props)

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip
   (with props)

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.asc
   (with props)

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-src.zip.sha512
   (with props)

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512
   (with props)

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.sha512
   (with props)

Added: 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
==
Binary file - no diff available.

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip
--
svn:mime-type = application/octet-stream

Added: 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
==
--- 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 (added)
+++ 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
 Thu Jun 21 16:35:15 2018
@@ -0,0 +1,16 @@
+-BEGIN PGP SIGNATURE-
+
+iQIcBAABCAAGBQJbIo9PAAoJENyT9pa9ek1peosP/0GQ/rmcO+8gqpnBTI+GXjlI
+3IYOFQgGIVDuT2okLnI9rGYG+1vZPoEevpALvZYOh7SskQnDdJWaxsbQGMf1J9z/
+K8rNpBUnJ3VNYEYmjPhW/7zjn9A0WIJ9PdrLvac7MCc9XH6DjhVI92v37bS8IqDc
+mF9FDPY3mYqvIMIm4P58XSp/9nilZx6pVOpNZN7m45cjv8I4uJ9KTQwdO+OEH61G
+K/IZdQsGr/ROr/vK3cF8ZXt3xA4iO47LftSJjFRaz2BiaWMUtU6ET1Z61+qa9Ire
+p1boXxJPLsq3DFr30foIlg/fJIRQDmOTMaMt0UjuqqulQJYQf2pPJ24XlFarnCUA
+hxkOg9Mt6MUGeHIeQJzQVw7f6bVzj8pe9YPHJY20ImZyHlJcY2kdeD3/O6Dk1NQm
+zsEZQXfaAY5Hulk1x5PajU1tKVGKbaigkG5sY0ty4T2EYJCdFXjEx44d45wJ16Jp
+/xtdb7l1XkaH6petiBSii0VA0UCGQFucGaKZm0ameT5GnESSiEqd3JOkavBcCoCD
+DPHQfvDA5nby81peH3H7dXVYKPxhhyUEkDJzNnRe/Ua+WNZpwvEhLb9EtKXlFhOx
+jvdJjUuzU3v+UOUVLXDHgN/e4LFx7wcQ/3vvWvLc4zG/cYjv7wNxI5KIRbZmuKMf
+OIDSzOJCsvSPFEbnvTHh
+=acrH
+-END PGP SIGNATURE-

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.asc
--
svn:eol-style = native

Added: 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
==
--- 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 (added)
+++ 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
 Thu Jun 21 16:35:15 2018
@@ -0,0 +1 @@
+aa94e941170da971dae1238d8345e3c55cefa1dbbafd133c1d3c57dab7427a5dbbf9e8de52805bf4b114f681e4af4f1dc247432ad98bf81092f3c10b0b9eb616
  apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip

Propchange: 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-java-chassis-distribution-1.0.0-m2-bin.zip.sha512
--
svn:eol-style = native

Added: 
release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb

svn commit: r27627 - in /release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2: apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512 apache-servicecomb-incubating-s

2018-06-21 Thread asifdxtreme
Author: asifdxtreme
Date: Thu Jun 21 16:40:47 2018
New Revision: 27627

Log:
Upload Java-Chassis 1.0.0-m2 Release

Removed:

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-saga-distribution-0.2.0-bin.zip.sha512

release/incubator/servicecomb/incubator-servicecomb-java-chassis/1.0.0-m2/apache-servicecomb-incubating-saga-distribution-0.2.0-src.zip.sha512



[incubator-servicecomb-service-center] branch master updated: SCB-680 Optimize find instance api (#376)

2018-06-24 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 67e0f0b  SCB-680 Optimize find instance api (#376)
67e0f0b is described below

commit 67e0f0bd5b71e5d8034dc3ca84a13f88ba8692df
Author: little-cui 
AuthorDate: Mon Jun 25 12:44:12 2018 +0800

SCB-680 Optimize find instance api (#376)

* SCB-680 Optimize find instance api
---
 server/service/dependency.go   |  2 -
 server/service/event/instance_event_handler.go | 19 +-
 server/service/event/rule_event_handler.go |  2 +-
 server/service/event/tag_event_handler.go  |  2 +-
 server/service/instance.go | 26 +++-
 server/service/{util => notification}/common.go| 41 +++--
 server/service/notification/listwatcher.go | 25 +---
 .../{util/common.go => notification/notice.go} | 32 +++---
 server/service/notification/stream.go  | 54 
 .../notification/{struct.go => subscriber.go}  | 58 --
 .../notification/{watch_util.go => websocket.go}   | 57 +
 server/service/util/common.go  |  4 ++
 server/service/util/find_cache.go  | 71 ++
 server/service/util/find_cache_test.go | 60 ++
 server/service/util/instance_util.go   | 11 ++--
 server/service/util/instance_util_test.go  |  8 +--
 server/service/watch.go|  2 +-
 17 files changed, 322 insertions(+), 152 deletions(-)

diff --git a/server/service/dependency.go b/server/service/dependency.go
index eac1aa2..4c13dd0 100644
--- a/server/service/dependency.go
+++ b/server/service/dependency.go
@@ -140,7 +140,6 @@ func (s *MicroServiceService) GetProviderDependencies(ctx 
context.Context, in *p
Response: pb.CreateResponse(scerr.ErrInternal, 
err.Error()),
}, err
}
-   util.Logger().Debugf("GetProviderDependencies successfully, providerId 
is %s.", in.ServiceId)
return &pb.GetProDependenciesResponse{
Response:  pb.CreateResponse(pb.Response_SUCCESS, "Get all 
consumers successful."),
Consumers: services,
@@ -181,7 +180,6 @@ func (s *MicroServiceService) GetConsumerDependencies(ctx 
context.Context, in *p
}, err
}
 
-   util.Logger().Debugf("GetConsumerDependencies successfully, consumerId 
is %s.", consumerId)
return &pb.GetConDependenciesResponse{
Response:  pb.CreateResponse(pb.Response_SUCCESS, "Get all 
providers successfully."),
Providers: services,
diff --git a/server/service/event/instance_event_handler.go 
b/server/service/event/instance_event_handler.go
index 8144649..a80376d 100644
--- a/server/service/event/instance_event_handler.go
+++ b/server/service/event/instance_event_handler.go
@@ -93,7 +93,7 @@ func (h *InstanceEventHandler) OnEvent(evt backend.KvEvent) {
return
}
 
-   nf.PublishInstanceEvent(domainProject, action, &pb.MicroServiceKey{
+   PublishInstanceEvent(domainProject, action, &pb.MicroServiceKey{
Environment: ms.Environment,
AppId:   ms.AppId,
ServiceName: ms.ServiceName,
@@ -104,3 +104,20 @@ func (h *InstanceEventHandler) OnEvent(evt 
backend.KvEvent) {
 func NewInstanceEventHandler() *InstanceEventHandler {
return &InstanceEventHandler{}
 }
+
+func PublishInstanceEvent(domainProject string, action pb.EventType, 
serviceKey *pb.MicroServiceKey, instance *pb.MicroServiceInstance, rev int64, 
subscribers []string) {
+   response := &pb.WatchInstanceResponse{
+   Response: pb.CreateResponse(pb.Response_SUCCESS, "Watch 
instance successfully."),
+   Action:   string(action),
+   Key:  serviceKey,
+   Instance: instance,
+   }
+   for _, consumerId := range subscribers {
+   // expires cache
+   serviceUtil.FindInstancesCache.Delete(domainProject, 
consumerId, serviceKey)
+
+   // TODO add超时怎么处理?
+   job := nf.NewWatchJob(consumerId, 
apt.GetInstanceRootKey(domainProject)+"/", rev, response)
+   nf.GetNotifyService().AddJob(job)
+   }
+}
diff --git a/server/service/event/rule_event_handler.go 
b/server/service/event/rule_event_handler.go
index 0999dd0..474811e 100644
--- a/server/service/event/rule_event_handler.go
+++ b/server/service/event/rule_event_handler.go
@@ -69,7 +69,7 @@ func (apt *RulesChangedTask) publish(ctx context.Context, 
domainProject, provide
}
providerKey 

[incubator-servicecomb-service-center] branch master updated: SCB-698 Fix for services count in pagination during search (#382)

2018-07-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 512d1d5  SCB-698 Fix for services count in pagination during search 
(#382)
512d1d5 is described below

commit 512d1d5a78774312280e5b873263bf422789c492
Author: vibakar 
AuthorDate: Mon Jul 2 17:56:21 2018 +0530

SCB-698 Fix for services count in pagination during search (#382)

* fix for services count in pagination during search

* code has been formatted
---
 frontend/app/scripts/directives/tableDirective.js  |  10 +-
 .../serviceCenter/controllers/servicesListCtrl.js  | 280 ++---
 .../modules/serviceCenter/views/servicesList.html  |   3 +-
 frontend/app/scripts/views/tableData.html  |  53 ++--
 4 files changed, 173 insertions(+), 173 deletions(-)

diff --git a/frontend/app/scripts/directives/tableDirective.js 
b/frontend/app/scripts/directives/tableDirective.js
index 4bb138c..898933b 100644
--- a/frontend/app/scripts/directives/tableDirective.js
+++ b/frontend/app/scripts/directives/tableDirective.js
@@ -29,8 +29,9 @@ angular.module('serviceCenter')
 dialogClose: '=dialogClose',
 buttons: '=buttons',
 enableSearch: '=search',
-appList:'=appList',
-apiInfo:'=apiInfo'
+appList: '=appList',
+apiInfo: '=apiInfo',
+searchFn: '=searchFn'
 },
 templateUrl: 'scripts/views/tableData.html',
 link: function(scope) {
@@ -64,6 +65,7 @@ angular.module('serviceCenter')
 scope.searchClose = function() {
 scope.showSearch = false;
 scope.filter.search = "";
+scope.refresh();
 };
 
 scope.searchOpen = function() {
@@ -81,6 +83,10 @@ angular.module('serviceCenter')
 scope.remove = function(serviceId, instances) {
 scope.removes(serviceId, instances)
 };
+
+scope.fnSearch = function(searchData) {
+scope.searchFn(searchData);
+}
 }
 };
 }]);
diff --git 
a/frontend/app/scripts/modules/serviceCenter/controllers/servicesListCtrl.js 
b/frontend/app/scripts/modules/serviceCenter/controllers/servicesListCtrl.js
index 5f2c432..8d492da 100644
--- a/frontend/app/scripts/modules/serviceCenter/controllers/servicesListCtrl.js
+++ b/frontend/app/scripts/modules/serviceCenter/controllers/servicesListCtrl.js
@@ -16,154 +16,150 @@
  */
 'use strict';
 angular.module('serviceCenter.sc', [])
-   .controller('servicesListController', ['$scope', 'httpService', 
'apiConstant', 'commonService', '$stateParams', '$mdDialog',
-   function($scope, httpService, apiConstant, commonService, 
$stateParams, $mdDialog){
+.controller('servicesListController', ['$scope', 'httpService', 
'apiConstant', 'commonService', '$stateParams', '$mdDialog',
+function($scope, httpService, apiConstant, commonService, 
$stateParams, $mdDialog) {
 
-   $scope.appList = 'fetching';
-   $scope.serviceList = 'serviceList';
-   $scope.rowsPerPage = [5, 10];
-   
-   $scope.tableHeaders = [
-   {
-   'key': 'name'
-   },
-   {
-   'key': 'status'
-   },
-   {
-   'key': 'appId'
-   },
-   {
-   'key': 'version'
-   },
-   {
-   'key': 'createdAt'
-   },
-   {
-   'key': 'instances'
-   },
-   {
-   'key': 'operation'
-   }
-   ];
+$scope.appList = 'fetching';
+$scope.serviceList = &

[incubator-servicecomb-service-center] branch master updated: Dashboard page is designed to be responsive in smaller screen resolution (#384)

2018-07-02 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new 4a6b11b  Dashboard page is designed to be responsive in smaller screen 
resolution (#384)
4a6b11b is described below

commit 4a6b11b10d5d3bbe38710ec1288b50130a316572
Author: vibakar 
AuthorDate: Mon Jul 2 19:04:30 2018 +0530

Dashboard page is designed to be responsive in smaller screen resolution 
(#384)

* fix for services count in pagination during search

* code has been formatted

* dashboard page designed to be responsive in smaller laptops
---
 .../scripts/modules/dashboard/views/dashboard.html | 12 +++
 frontend/app/scripts/views/index.html  |  2 +-
 frontend/app/styles/main.css   | 40 --
 3 files changed, 45 insertions(+), 9 deletions(-)

diff --git a/frontend/app/scripts/modules/dashboard/views/dashboard.html 
b/frontend/app/scripts/modules/dashboard/views/dashboard.html
index b54245f..df42f84 100644
--- a/frontend/app/scripts/modules/dashboard/views/dashboard.html
+++ b/frontend/app/scripts/modules/dashboard/views/dashboard.html
@@ -24,14 +24,14 @@ limitations under the License..
 
 
 
-
+
 
 
 
 
 {{ info.title | translate 
}}
 
-
+
 {{ info.count }}
 
 
@@ -49,7 +49,7 @@ limitations under the License..
 
  
 
-{{ 
"starting" | translate }}
+{{ "starting" | translate }}
  {{ "up" | 
translate }}
  {{ "down" | 
translate }}
  {{ 
"outofservice" | translate }}
@@ -60,12 +60,12 @@ limitations under the License..
 
 
 
-
+
 
-
+
 {{ service.title | translate 
}}
 
-
+
 {{ service.count 
}}
 
 
diff --git a/frontend/app/scripts/views/index.html 
b/frontend/app/scripts/views/index.html
index 049fc0e..6d83ca9 100644
--- a/frontend/app/scripts/views/index.html
+++ b/frontend/app/scripts/views/index.html
@@ -29,7 +29,7 @@ limitations under the License.
   
 {{ "tenant" | translate }}
 
-
+
   
 
   
diff --git a/frontend/app/styles/main.css b/frontend/app/styles/main.css
index 774f3e3..74b72a3 100644
--- a/frontend/app/styles/main.css
+++ b/frontend/app/styles/main.css
@@ -278,7 +278,7 @@ body {
 }
 .dashboardCount .statusIcon {
   height: 65px;
-  padding: 12px;
+  padding: 15px;
 }
 .statusTitle, .statusCount {
   background-color: #fff;
@@ -358,7 +358,7 @@ md-table-pagination .md-select-icon {
 }
 .mainCard .mainCardIcon {
   height: 100%;
-  padding-top: 10px;
+  padding-top: 6%;
   text-align: center;
 }
 .mainCardTitle {
@@ -419,4 +419,40 @@ table, md-toolbar {
 .inline {
 display: inline;
 }
+.h-50 {
+height: 50px;
+}
+.count {
+margin: 5px 0px;
+}
+.pl-3 {
+padding-left: 3px
+}
+
+@media only screen
+and (min-width: 1030px)
+and (max-width: 1366px) {
+.mainCard .mainCardIcon{
+padding-top: 10%;
+}
+.mainCardCount {
+padding-left: 12px;
+font-size: 20px;
+}
+.count {
+margin: 16px 0px !important;
+ }
+ .fa-cog {
+margin-left: -4px;
+ }
+ .fa-cogs, .fa-server, .fa-users {
+margin-left: -7px;
+ }
+ .servicesChart {
+margin-top: 8%;
+ }
+ .mainCardTitle {
+font-weight: 500;
+ }
+}
 /*# sourceMappingURL=main.css.map */



[incubator-servicecomb-service-center] branch master updated: Add GItter Badge

2018-07-09 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.git


The following commit(s) were added to refs/heads/master by this push:
 new fc6664c  Add GItter Badge
fc6664c is described below

commit fc6664cc646c52a01b7934e3b20fa801510146f2
Author: Mohammad Asif Siddiqui 
AuthorDate: Mon Jul 9 17:56:25 2018 +0530

Add GItter Badge
---
 README.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/README.md b/README.md
index 4803590..b20813e 100644
--- a/README.md
+++ b/README.md
@@ -1,5 +1,5 @@
 # Apache-Incubator-ServiceComb-Service-Center 
-[![Build 
Status](https://www.travis-ci.org/apache/incubator-servicecomb-service-center.svg?branch=master)](https://www.travis-ci.org/apache/incubator-servicecomb-service-center)
  [![Coverage 
Status](https://coveralls.io/repos/github/apache/incubator-servicecomb-service-center/badge.svg?branch=master)](https://coveralls.io/github/apache/incubator-servicecomb-service-center?branch=master)
  [![Go Report 
Card](https://goreportcard.com/badge/github.com/apache/incubator-servicecomb-service-cen
 [...]
+[![Build 
Status](https://www.travis-ci.org/apache/incubator-servicecomb-service-center.svg?branch=master)](https://www.travis-ci.org/apache/incubator-servicecomb-service-center)
  [![Coverage 
Status](https://coveralls.io/repos/github/apache/incubator-servicecomb-service-center/badge.svg?branch=master)](https://coveralls.io/github/apache/incubator-servicecomb-service-center?branch=master)
  [![Go Report 
Card](https://goreportcard.com/badge/github.com/apache/incubator-servicecomb-service-cen
 [...]
 
 Apache ServiceComb (incubating) Service-Center is a Restful based 
service-registry that provides micro-services discovery and micro-service 
management. It is based on Open API format and provides features like 
service-discovery, fault-tolerance, dynamic routing, notify subscription and 
scalable by design. It has high performance cache design and separate entity 
management for micro-services and their instances. It provides out of box 
support for metrics and tracing. It has a web portal t [...]
 



[incubator-servicecomb-service-center.wiki] branch master updated: Updated Road Map (markdown)

2018-07-09 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 255afa2  Updated Road Map (markdown)
255afa2 is described below

commit 255afa2d643bb2838f2a72c2ef4700cc33389303
Author: Mohammad Asif Siddiqui 
AuthorDate: Mon Jul 9 18:01:10 2018 +0530

Updated Road Map (markdown)
---
 Road-Map.md | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/Road-Map.md b/Road-Map.md
index 045b955..acc7330 100644
--- a/Road-Map.md
+++ b/Road-Map.md
@@ -2,8 +2,10 @@ The roadmap shows our future plan, the features may be 
introduced in future rele
 
 # 1.0.0
 - Integrate with Kubernates
-- Show microservices top graph in UI
+- Show microservices topology graph in UI
 - Support of testing schema from UI
+- Support deployment of Service-Center on multiple Infrastructure
+- Add support for MacOS
 
 # 1.1.0
 - Support semantic version in microservice



[incubator-servicecomb-service-center.wiki] branch master updated: Updated Road Map (markdown)

2018-07-09 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 52dc027  Updated Road Map (markdown)
52dc027 is described below

commit 52dc0276af5b8a61596e076dc14f5ffd8576b499
Author: Mohammad Asif Siddiqui 
AuthorDate: Tue Jul 10 10:10:27 2018 +0530

Updated Road Map (markdown)
---
 Road-Map.md | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Road-Map.md b/Road-Map.md
index acc7330..21bf192 100644
--- a/Road-Map.md
+++ b/Road-Map.md
@@ -5,7 +5,7 @@ The roadmap shows our future plan, the features may be 
introduced in future rele
 - Show microservices topology graph in UI
 - Support of testing schema from UI
 - Support deployment of Service-Center on multiple Infrastructure
-- Add support for MacOS
+- Add support for multiple Infrastructure
 
 # 1.1.0
 - Support semantic version in microservice



[incubator-servicecomb-service-center.wiki] branch master updated: Updated Road Map (markdown)

2018-07-12 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new a1b036f  Updated Road Map (markdown)
a1b036f is described below

commit a1b036feafab476997cc125518d050412261a64d
Author: Mohammad Asif Siddiqui 
AuthorDate: Thu Jul 12 15:36:29 2018 +0530

Updated Road Map (markdown)
---
 Road-Map.md | 1 -
 1 file changed, 1 deletion(-)

diff --git a/Road-Map.md b/Road-Map.md
index 21bf192..f21bc4a 100644
--- a/Road-Map.md
+++ b/Road-Map.md
@@ -5,7 +5,6 @@ The roadmap shows our future plan, the features may be 
introduced in future rele
 - Show microservices topology graph in UI
 - Support of testing schema from UI
 - Support deployment of Service-Center on multiple Infrastructure
-- Add support for multiple Infrastructure
 
 # 1.1.0
 - Support semantic version in microservice



[incubator-servicecomb-service-center.wiki] branch master updated: Updated Road Map (markdown)

2018-07-12 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 4019599  Updated Road Map (markdown)
4019599 is described below

commit 4019599c663734eeafcd58a5ecd6f05bd4754d29
Author: Mohammad Asif Siddiqui 
AuthorDate: Thu Jul 12 15:42:16 2018 +0530

Updated Road Map (markdown)
---
 Road-Map.md | 1 +
 1 file changed, 1 insertion(+)

diff --git a/Road-Map.md b/Road-Map.md
index f21bc4a..b77b739 100644
--- a/Road-Map.md
+++ b/Road-Map.md
@@ -5,6 +5,7 @@ The roadmap shows our future plan, the features may be 
introduced in future rele
 - Show microservices topology graph in UI
 - Support of testing schema from UI
 - Support deployment of Service-Center on multiple Infrastructure
+- Re-design the Service-Center UI
 
 # 1.1.0
 - Support semantic version in microservice



[incubator-servicecomb-service-center.wiki] branch master updated: Updated Road Map (markdown)

2018-07-12 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 98fa180  Updated Road Map (markdown)
98fa180 is described below

commit 98fa180f9fd90264eab6aaad75dba2f7bfe46186
Author: Mohammad Asif Siddiqui 
AuthorDate: Thu Jul 12 16:09:03 2018 +0530

Updated Road Map (markdown)
---
 Road-Map.md | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/Road-Map.md b/Road-Map.md
index b77b739..d6726be 100644
--- a/Road-Map.md
+++ b/Road-Map.md
@@ -1,12 +1,12 @@
 The roadmap shows our future plan, the features may be introduced in future 
release
 
 # 1.0.0
-- Integrate with Kubernates
 - Show microservices topology graph in UI
 - Support of testing schema from UI
-- Support deployment of Service-Center on multiple Infrastructure
 - Re-design the Service-Center UI
 
 # 1.1.0
+- Integrate with Kubernates
 - Support semantic version in microservice
-- Support consul registry
\ No newline at end of file
+- Support consul registry
+- Support deployment of Service-Center on multiple Infrastructure
\ No newline at end of file



[incubator-servicecomb-service-center.wiki] branch master updated: Created Service-Center UI Re-design (markdown)

2018-07-13 Thread asifdxtreme
This is an automated email from the ASF dual-hosted git repository.

asifdxtreme pushed a commit to branch master
in repository 
https://gitbox.apache.org/repos/asf/incubator-servicecomb-service-center.wiki.git


The following commit(s) were added to refs/heads/master by this push:
 new 355b89c  Created Service-Center UI Re-design (markdown)
355b89c is described below

commit 355b89c7c65d2f6b2fcb665415650d005df92c69
Author: Mohammad Asif Siddiqui 
AuthorDate: Fri Jul 13 17:07:42 2018 +0530

Created Service-Center UI Re-design (markdown)
---
 Service-Center-UI-Re-design.md | 23 +++
 1 file changed, 23 insertions(+)

diff --git a/Service-Center-UI-Re-design.md b/Service-Center-UI-Re-design.md
new file mode 100644
index 000..2c9d3b6
--- /dev/null
+++ b/Service-Center-UI-Re-design.md
@@ -0,0 +1,23 @@
+This documents shows the proposed design changes for Service-Center UI.
+
+### Major Changes for UI.
+ - New Dashboard with a more simpler look of the complete resources(services, 
instances, providers and consumer) in the env.
+ - New Placeholder for User Guide.
+ - Better Search filters for Service List Page.
+ - New Instance List Page which shows the list of all the instances with it's 
metadata information.
+ - New Topology View for Services which shows the relations of microservices 
with each other.
+ - Improve Schema Page.
+ - Support the test of Schema through UI including fileUpload.
+
+### Snapshots
+
+ - Dashboard
+![](https://github.com/asifdxtreme/Docs/blob/master/Dashboard.png)
+ - Service List Page
+![](https://github.com/asifdxtreme/Docs/blob/master/ServiceList.png)
+ - Instance List
+![](https://github.com/asifdxtreme/Docs/blob/master/InstanceList.png)
+ - Service-Topology
+![](https://github.com/asifdxtreme/Docs/blob/master/Topology.png)
+ - Service-Metadata
+![](https://github.com/asifdxtreme/Docs/blob/master/TopologyInfo.png)
\ No newline at end of file



  1   2   3   4   5   6   >