LEFT | RIGHT |
1 // launchpad.net/juju/state | 1 // launchpad.net/juju/state |
2 // | 2 // |
3 // Copyright (c) 2011-2012 Canonical Ltd. | 3 // Copyright (c) 2011-2012 Canonical Ltd. |
4 package state | 4 package state |
5 | 5 |
6 import ( | 6 import ( |
7 "fmt" | 7 "fmt" |
8 "io/ioutil" | 8 "io/ioutil" |
9 "launchpad.net/gozk/zookeeper" | 9 "launchpad.net/gozk/zookeeper" |
10 "os" | 10 "os" |
(...skipping 30 matching lines...) Expand all Loading... |
41 t.Fatal("cannot remove temporary directory: %v", err) | 41 t.Fatal("cannot remove temporary directory: %v", err) |
42 } | 42 } |
43 } | 43 } |
44 | 44 |
45 // ZkConn returns the ZooKeeper connection used by a state. | 45 // ZkConn returns the ZooKeeper connection used by a state. |
46 // It is defined in export_test.go so that tests can have access | 46 // It is defined in export_test.go so that tests can have access |
47 // to this connection. | 47 // to this connection. |
48 func ZkConn(st *State) *zookeeper.Conn { | 48 func ZkConn(st *State) *zookeeper.Conn { |
49 return st.zk | 49 return st.zk |
50 } | 50 } |
LEFT | RIGHT |