illustrate the problem

Signed-off-by: jkoberg <jkoberg@owncloud.com>
This commit is contained in:
jkoberg
2022-03-05 13:01:11 +01:00
parent 1d98e4827e
commit 1205d3489e

View File

@@ -2,6 +2,7 @@ package store
import (
"context"
"fmt"
"path"
"strings"
"time"
@@ -78,7 +79,9 @@ func (c *CachedMDC) ReadDir(ctx context.Context, id string) ([]string, error) {
return i.([]string), nil
}
fmt.Println("readdir calling metadataservice", id)
s, err := c.next.ReadDir(ctx, id)
fmt.Println("readdir calling metadataservice result", s, err)
if err != nil {
return nil, err
}