Failed sync due to schema requirements #59
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
On the latest zooid:
relay sync failed relay=6cd424c2-9ade-4ad7-9bb1-03b5002cd096 error=zooid sync returned 400 Bad Request: {"error":"schema must contain only letters, numbers, and underscores"}Default schema should be
slugify(subdomain) + '_' + relay.id[:8]Let's actually make the schema the same as the relay schema as described above. This will make looking through config files and such much easier. Collisions are very unlikely to happen with subdomain + 8 hex digits, and a the unique constraint on subdomain will keep us safe there too.
Fixed in
dbe25c3