From eb6ba0374f341957dee36d74847efbacfa11ef8d Mon Sep 17 00:00:00 2001 From: Ruben Verborgh Date: Sun, 20 Dec 2020 22:54:23 +0100 Subject: [PATCH] fix: Remove faulty no-routing configuration. --- config/config-default.json | 2 +- config/config-file.json | 2 +- config/config-sparql-endpoint.json | 2 +- config/presets/storage/routing/no-routing.json | 12 ------------ test/configs/auth-allow-all.json | 2 +- 5 files changed, 4 insertions(+), 16 deletions(-) delete mode 100644 config/presets/storage/routing/no-routing.json diff --git a/config/config-default.json b/config/config-default.json index dd507f89b..bd4f4fbc9 100644 --- a/config/config-default.json +++ b/config/config-default.json @@ -17,7 +17,6 @@ "files-scs:config/presets/pod-management.json", "files-scs:config/presets/representation-conversion.json", "files-scs:config/presets/storage/backend/storage-memory.json", - "files-scs:config/presets/storage/routing/no-routing.json", "files-scs:config/presets/storage-wrapper.json", "files-scs:config/presets/cli-params.json" ], @@ -25,6 +24,7 @@ { "comment": "Use a memory based store as backend with no additional routing.", "@id": "urn:solid-server:default:RoutingResourceStore", + "@type": "PassthroughStore", "PassthroughStore:_source": { "@id": "urn:solid-server:default:MemoryResourceStore" } diff --git a/config/config-file.json b/config/config-file.json index e0cec9af0..74945ce22 100644 --- a/config/config-file.json +++ b/config/config-file.json @@ -17,7 +17,6 @@ "files-scs:config/presets/pod-management.json", "files-scs:config/presets/representation-conversion.json", "files-scs:config/presets/storage/backend/storage-filesystem.json", - "files-scs:config/presets/storage/routing/no-routing.json", "files-scs:config/presets/storage-wrapper.json", "files-scs:config/presets/cli-params.json" ], @@ -25,6 +24,7 @@ { "comment": "Use a file based store as backend with no additional routing.", "@id": "urn:solid-server:default:RoutingResourceStore", + "@type": "PassthroughStore", "PassthroughStore:_source": { "@id": "urn:solid-server:default:FileResourceStore" } diff --git a/config/config-sparql-endpoint.json b/config/config-sparql-endpoint.json index 2f809eeec..7a14b124c 100644 --- a/config/config-sparql-endpoint.json +++ b/config/config-sparql-endpoint.json @@ -17,7 +17,6 @@ "files-scs:config/presets/pod-management.json", "files-scs:config/presets/representation-conversion.json", "files-scs:config/presets/storage/backend/storage-sparql-endpoint.json", - "files-scs:config/presets/storage/routing/no-routing.json", "files-scs:config/presets/storage-wrapper.json", "files-scs:config/presets/cli-params.json" ], @@ -25,6 +24,7 @@ { "comment": "Use a SPARQL based store as backend with no additional routing.", "@id": "urn:solid-server:default:RoutingResourceStore", + "@type": "PassthroughStore", "PassthroughStore:_source": { "@id": "urn:solid-server:default:SparqlResourceStore" } diff --git a/config/presets/storage/routing/no-routing.json b/config/presets/storage/routing/no-routing.json deleted file mode 100644 index 3c6c80fa9..000000000 --- a/config/presets/storage/routing/no-routing.json +++ /dev/null @@ -1,12 +0,0 @@ -{ - "@context": "https://linkedsoftwaredependencies.org/bundles/npm/@solid/community-server/^1.0.0/components/context.jsonld", - "@graph": [ - { - "@id": "urn:solid-server:default:RoutingResourceStore", - "@type": "PassthroughStore", - "PassthroughStore:_source": { - "@id": "urn:solid-server:default:BackendResourceStore" - } - } - ] -} diff --git a/test/configs/auth-allow-all.json b/test/configs/auth-allow-all.json index 3efda7a98..52d700041 100644 --- a/test/configs/auth-allow-all.json +++ b/test/configs/auth-allow-all.json @@ -13,7 +13,6 @@ "files-scs:config/presets/pod-management.json", "files-scs:config/presets/representation-conversion.json", "files-scs:config/presets/storage/backend/storage-memory.json", - "files-scs:config/presets/storage/routing/no-routing.json", "files-scs:config/presets/storage-wrapper.json", "files-scs:config/presets/cli-params.json" ], @@ -42,6 +41,7 @@ }, { "@id": "urn:solid-server:default:RoutingResourceStore", + "@type": "PassthroughStore", "PassthroughStore:_source": { "@id": "urn:solid-server:default:MemoryResourceStore" }