(key string)
| 246 | } |
| 247 | |
| 248 | func (m *etcdMachineInterface) prefixifyForMachine(key string) string { |
| 249 | return path.Join(m.etcdDS.ClusterName(), etcdMachinesDirName, m.Hostname(), |
| 250 | key) |
| 251 | } |
| 252 | |
| 253 | func (m *etcdMachineInterface) selfGet(key string) (string, error) { |
| 254 | return m.etcdDS.get(m.prefixifyForMachine(key)) |
no test coverage detected