return store.ErrNotFound (#1332)
This commit is contained in:
parent
f55493993c
commit
1ca4619506
@ -218,6 +218,10 @@ func (w *workersKV) Read(key string, opts ...store.ReadOption) ([]*store.Record,
|
|||||||
return records, err
|
return records, err
|
||||||
}
|
}
|
||||||
if status < 200 || status >= 300 {
|
if status < 200 || status >= 300 {
|
||||||
|
if status == 404 {
|
||||||
|
return nil, store.ErrNotFound
|
||||||
|
}
|
||||||
|
|
||||||
return records, errors.New("Received unexpected Status " + strconv.Itoa(status) + string(response))
|
return records, errors.New("Received unexpected Status " + strconv.Itoa(status) + string(response))
|
||||||
}
|
}
|
||||||
record := &store.Record{
|
record := &store.Record{
|
||||||
|
Loading…
Reference in New Issue
Block a user