diff --git a/tests/integration/grpc/fixtures/ocm-share/ocm-server-cernbox-grpc.toml b/tests/integration/grpc/fixtures/ocm-share/ocm-server-cernbox-grpc.toml index 205142a456..d99a834cfb 100644 --- a/tests/integration/grpc/fixtures/ocm-share/ocm-server-cernbox-grpc.toml +++ b/tests/integration/grpc/fixtures/ocm-share/ocm-server-cernbox-grpc.toml @@ -43,6 +43,9 @@ treetime_accounting = true treesize_accounting = true permissionssvc = "{{permissions_address}}" +[grpc.services.storageprovider.drivers.ocis.filemetadatacache] +cache_store = "noop" + [grpc.services.authregistry] driver = "static" diff --git a/tests/integration/grpc/fixtures/ocm-share/ocm-server-cernbox-http.toml b/tests/integration/grpc/fixtures/ocm-share/ocm-server-cernbox-http.toml index 3ab6ece06d..f767db10ef 100644 --- a/tests/integration/grpc/fixtures/ocm-share/ocm-server-cernbox-http.toml +++ b/tests/integration/grpc/fixtures/ocm-share/ocm-server-cernbox-http.toml @@ -33,4 +33,8 @@ treetime_accounting = true treesize_accounting = true permissionssvc = "{{permissions_address}}" +[http.services.dataprovider.drivers.ocis.filemetadatacache] +cache_store = "noop" + + [http.services.ocdav] diff --git a/tests/integration/grpc/fixtures/storageprovider-ocis.toml b/tests/integration/grpc/fixtures/storageprovider-ocis.toml index 18b2289e69..d5a36fc4e2 100644 --- a/tests/integration/grpc/fixtures/storageprovider-ocis.toml +++ b/tests/integration/grpc/fixtures/storageprovider-ocis.toml @@ -9,3 +9,6 @@ root = "{{root}}/storage" treetime_accounting = true treesize_accounting = true permissionssvc = "{{permissions_address}}" + +[grpc.services.storageprovider.drivers.ocis.filemetadatacache] +cache_store = "noop" \ No newline at end of file diff --git a/tests/oc-integration-tests/drone/storage-users-posixfs.toml b/tests/oc-integration-tests/drone/storage-users-posixfs.toml index a3f0b09b9c..aa6bfd4fee 100644 --- a/tests/oc-integration-tests/drone/storage-users-posixfs.toml +++ b/tests/oc-integration-tests/drone/storage-users-posixfs.toml @@ -27,6 +27,9 @@ treesize_accounting = true personalspacepath_template = "users/{{.User.Username}}" generalspacepath_template = "projects/{{.SpaceId}}" +[grpc.services.storageprovider.drivers.posix.filemetadatacache] +cache_store = "noop" + [grpc.services.storageprovider.drivers.posix.idcache] cache_store = "redis" cache_nodes = [ "redis://redis:6379" ] @@ -48,4 +51,7 @@ treesize_accounting = true [http.services.dataprovider.drivers.posix.idcache] cache_store = "redis" -cache_nodes = [ "redis://redis:6379" ] \ No newline at end of file +cache_nodes = [ "redis://redis:6379" ] + +[http.services.dataprovider.drivers.posix.filemetadatacache] +cache_store = "noop" \ No newline at end of file