Skip to content

Commit 0060f00

Browse files
committed
etcdClient.go: fixed a bug where nil was returned instead of err
Signed-off-by: Bill Robinson <[email protected]>
1 parent fd55124 commit 0060f00

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

etcdClient.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ func (ep *EtcdClient) ListDir(key string) ([]string, error) {
161161
}
162162
}
163163
if err != nil {
164-
return nil, nil
164+
return nil, err
165165
}
166166
}
167167

0 commit comments

Comments
 (0)