Skip to content

Commit 77da460

Browse files
authored
Merge pull request contiv#23 from dseevr/fix_unreturned_error
etcdClient.go: fixed a bug where nil was returned instead of err
2 parents fd55124 + 0060f00 commit 77da460

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)