Merge "Move dependency's 'deploy' call into the method 'deploy' of app"

This commit is contained in:
Jenkins 2015-04-15 10:15:22 +00:00 committed by Gerrit Code Review
commit 18209fbac5
2 changed files with 12 additions and 2 deletions

View File

@ -28,10 +28,15 @@ Methods:
- $._scope: switch($.publish, $ => public, not $ => internal)
getContainer:
deploy:
Body:
- $.redisMaster.deploy()
- $.redisSlave.deploy()
- $.super($.deploy())
getContainer:
Body:
- $redisMasterLink: $.getConnectionTo($.redisMaster, 6379)
- $redisSlaveLink: $.getConnectionTo($.redisSlave, 6379)
- Return:

View File

@ -37,9 +37,14 @@ Methods:
- $._scope: switch($.publish, $ => public, not $ => internal)
getContainer:
deploy:
Body:
- $.database.deploy()
- $.super($.deploy())
getContainer:
Body:
- $dbLink: $.getConnectionTo($.database, 3306)
- Return:
name: $.name