best-businessperson-92294
02/02/2024, 5:11 AMversion: v0.7.0-alpha.1
debug: true
log:
level: debug
namespaces:
- id: 0
name: videos
serve:
read:
host: 0.0.0.0
port: 4466
write:
host: 0.0.0.0
port: 4467
dsn: sqlite:///var/lib/sqlite/db.sqlite?_fk=true&mode=rwc
The GET request to localhost:4466/relation-tuples/check?namespace=videos&object=/cats/1.mp4&relation=view&subject_id=*
result in this 404 response with response body of plain text:
404 page not found
But if I just run GET on localhost:4466/relation-tuples
it returns all the tuples I've in the DB (yes, the write api - PUT localhost:4467/relation-tuples
works for creation of tuples). So that tells me the keto is up and running and it feels like something isn't configured correctly. Normally with Keto network, even if the relation or namespace or anything isn't found, the relation-tuples/check
just return this JSON
{
"allowed": false
}
Any ideas? Thank you!