Index: environs/ec2/export_test.go |
=== modified file 'environs/ec2/export_test.go' |
--- environs/ec2/export_test.go 2012-09-19 14:14:33 +0000 |
+++ environs/ec2/export_test.go 2012-09-21 13:37:42 +0000 |
@@ -9,7 +9,7 @@ |
) |
type BootstrapState struct { |
- ZookeeperInstances []string |
+ StateInstances []string |
} |
func LoadState(e environs.Environ) (*BootstrapState, error) { |
@@ -17,7 +17,7 @@ |
if err != nil { |
return nil, err |
} |
- return &BootstrapState{s.ZookeeperInstances}, nil |
+ return &BootstrapState{s.StateInstances}, nil |
} |
func GroupName(e environs.Environ) string { |
@@ -100,7 +100,7 @@ |
return ec2ErrCode(err) |
} |
-var ZkPortSuffix = zkPortSuffix |
+var MgoPortSuffix = mgoPortSuffix |
// FabricateInstance creates a new fictitious instance |
// given an existing instance and a new id. |