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

Unified Diff: environs/maas/util.go

Issue 9738043: cmd/jujud: do not change password
Patch Set: cmd/jujud: do not change password Created 11 years, 9 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 | « environs/maas/state.go ('k') | environs/maas/util_test.go » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: environs/maas/util.go
=== modified file 'environs/maas/util.go'
--- environs/maas/util.go 2013-05-02 15:55:42 +0000
+++ environs/maas/util.go 2013-06-16 23:07:00 +0000
@@ -8,8 +8,8 @@
"launchpad.net/goyaml"
cloudinit_core "launchpad.net/juju-core/cloudinit"
"launchpad.net/juju-core/environs/cloudinit"
+ "launchpad.net/juju-core/instance"
"launchpad.net/juju-core/log"
- "launchpad.net/juju-core/state"
"launchpad.net/juju-core/utils"
"net/url"
"strings"
@@ -17,7 +17,7 @@
// extractSystemId extracts the 'system_id' part from an InstanceId.
// "/MAAS/api/1.0/nodes/system_id/" => "system_id"
-func extractSystemId(instanceId state.InstanceId) string {
+func extractSystemId(instanceId instance.Id) string {
trimmed := strings.TrimRight(string(instanceId), "/")
split := strings.Split(trimmed, "/")
return split[len(split)-1]
@@ -26,7 +26,7 @@
// getSystemIdValues returns a url.Values object with all the 'system_ids'
// from the given instanceIds stored under the key 'id'. This is used
// to filter out instances when listing the nodes objects.
-func getSystemIdValues(instanceIds []state.InstanceId) url.Values {
+func getSystemIdValues(instanceIds []instance.Id) url.Values {
values := url.Values{}
for _, instanceId := range instanceIds {
values.Add("id", extractSystemId(instanceId))
« no previous file with comments | « environs/maas/state.go ('k') | environs/maas/util_test.go » ('j') | no next file with comments »

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