Use Guardclause for function

This commit is contained in:
Dario Maiocchi 2018-10-06 23:35:07 +02:00 committed by dmaiocchi
parent 28db807c97
commit caf0f7ed68
1 changed files with 3 additions and 4 deletions

View File

@ -46,12 +46,11 @@ func (c *Conn) PingMonitor(id string) (string, error) {
// if any. // if any.
func (c *Conn) Connect() error { func (c *Conn) Connect() error {
ret := C.rados_connect(c.cluster) ret := C.rados_connect(c.cluster)
if ret == 0 { if ret != 0 {
c.connected = true
return nil
} else {
return RadosError(int(ret)) return RadosError(int(ret))
} }
c.connected = true
return nil
} }
// Shutdown disconnects from the cluster. // Shutdown disconnects from the cluster.