mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2025-01-18 22:43:41 +08:00
mongodb: remove ErrNoDocuments checking since it is only for creating single record, not for querying
This commit is contained in:
parent
98cce6a150
commit
df51e0c042
@ -200,10 +200,6 @@ func (store *MongodbStore) ListDirectoryEntries(ctx context.Context, dirPath uti
|
||||
for cur.Next(ctx) {
|
||||
var data Model
|
||||
err = cur.Decode(&data)
|
||||
if err == mongo.ErrNoDocuments {
|
||||
err = nil
|
||||
break
|
||||
}
|
||||
if err != nil {
|
||||
break
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user