Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 13 additions & 0 deletions authzed/api/v1/error_reason.proto
Original file line number Diff line number Diff line change
Expand Up @@ -413,4 +413,17 @@ enum ErrorReason {
// }
// }
ERROR_REASON_TRANSACTION_METADATA_TOO_LARGE = 29;

// The request failed because the datastore has not been migrated.
// This typically indicates that the `spicedb datastore migrate` command
// has not been run against the backing database.
//
// Example of an ErrorInfo:
//
// {
// "reason": "ERROR_REASON_DATASTORE_NOT_MIGRATED",
// "domain": "authzed.com",
// "metadata": {}
// }
ERROR_REASON_DATASTORE_NOT_MIGRATED = 30;
}