Skip to content

Commit 8acf6b2

Browse files
committed
Adjust resource location
1 parent 0115592 commit 8acf6b2

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

components/webac/src/main/java/org/trellisldp/webac/WebAcService.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ private List<Authorization> getDefaultRootAuthorizations() {
123123
private Dataset generateDefaultRootAuthorizationsDataset() {
124124
final Dataset dataset = rdf.createDataset();
125125
final String location = getConfig().getOptionalValue(CONFIG_WEBAC_ROOT_ACL_LOCATION, String.class)
126-
.orElse("defaultAcl.ttl");
126+
.orElse("/org/trellisldp/webac/defaultAcl.ttl");
127127
try (final InputStream is = Thread.currentThread().getContextClassLoader().getResourceAsStream(location)) {
128128
if (ioService != null && is != null) {
129129
ioService.read(is, TURTLE, TRELLIS_DATA_PREFIX)

0 commit comments

Comments
 (0)