Skip to content

Commit

Permalink
make stat requests route based on providerid (#2985)
Browse files Browse the repository at this point in the history
Signed-off-by: Jörn Friedrich Dreyer <jfd@butonic.de>
  • Loading branch information
butonic authored Jun 17, 2022
1 parent c45ea45 commit 3b2537f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
5 changes: 5 additions & 0 deletions changelog/unreleased/allow-stat-to-route-based-on-id.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Bugfix: make stat requests route based on storage providerid

The gateway now uses a filter mask to only fetch the root id of a space for stat requests. This allows the spaces registry to determine the responsible storage provider without querying the storageproviders.

https://github.com/cs3org/reva/pull/2985
1 change: 1 addition & 0 deletions internal/grpc/services/gateway/storageprovider.go
Original file line number Diff line number Diff line change
Expand Up @@ -1132,6 +1132,7 @@ func (s *svc) findSingleSpace(ctx context.Context, ref *provider.Reference) ([]*
}

filters := map[string]string{
"mask": "root", // FIXME replace with fieldmask, here we only want to get the root resourceid
"path": ref.Path,
"unique": "true",
}
Expand Down

0 comments on commit 3b2537f

Please sign in to comment.