Fix Rally application

Variables $repository & $version are defined in the class-level
scope and should be addressed as $.repository & $.version to
return actual value passed by the user.

Change-Id: Iff1bd16e7e02841a2b42962caaa285725b97b3d3
Closes-Bug: #1453586
This commit is contained in:
Serg Melikyan 2015-05-11 11:35:24 +03:00
parent bfac7ee190
commit f11109904b
1 changed files with 2 additions and 2 deletions

View File

@ -54,8 +54,8 @@ Methods:
- $._environment.reporter.report($this, 'Instance has been created. Installing Rally...')
# Install Rally
- $template: $resources.yaml('InstallRally.template').bind(dict(
repository => $repository,
version => $version
repository => $.repository,
version => $.version
))
- $.instance.agent.call($template, $resources)
- $._environment.reporter.report($this, 'Rally has been installed.')