Rietveld Code Review Tool
Help | Bug tracker | Discussion group | Source code | Sign in
(269)

Unified Diff: state/statecmd/get.go

Issue 8532043: Augment ServiceGetResults
Patch Set: Augment ServiceGetResults Created 11 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Please Sign in to add in-line comments.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « state/statecmd/config_test.go ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: state/statecmd/get.go
=== modified file 'state/statecmd/get.go'
--- state/statecmd/get.go 2013-03-06 16:44:27 +0000
+++ state/statecmd/get.go 2013-04-08 20:52:01 +0000
@@ -20,7 +20,7 @@
if err != nil {
return params.ServiceGetResults{}, err
}
- svcfg, err := svc.Config()
+ svcCfg, err := svc.Config()
if err != nil {
return params.ServiceGetResults{}, err
}
@@ -28,12 +28,18 @@
if err != nil {
return params.ServiceGetResults{}, err
}
- chcfg := charm.Config().Options
+ charmCfg := charm.Config().Options
+
+ constraints, err := svc.Constraints()
+ if err != nil {
+ return params.ServiceGetResults{}, err
+ }
return params.ServiceGetResults{
- Service: p.ServiceName,
- Charm: charm.Meta().Name,
- Settings: merge(svcfg.Map(), chcfg),
+ Service: p.ServiceName,
+ Charm: charm.Meta().Name,
+ Config: merge(svcCfg.Map(), charmCfg),
+ Constraints: constraints,
}, nil
}
« no previous file with comments | « state/statecmd/config_test.go ('k') | no next file » | no next file with comments »

Powered by Google App Engine
RSS Feeds Recent Issues | This issue
This is Rietveld f62528b