DeleteVariable erases the entry specified by key
(key string)
| 242 | |
| 243 | // DeleteVariable erases the entry specified by key |
| 244 | func (m *etcdMachineInterface) DeleteVariable(key string) error { |
| 245 | return m.selfDelete(key) |
| 246 | } |
| 247 | |
| 248 | func (m *etcdMachineInterface) prefixifyForMachine(key string) string { |
| 249 | return path.Join(m.etcdDS.ClusterName(), etcdMachinesDirName, m.Hostname(), |
nothing calls this directly
no test coverage detected