We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e64729d commit 2fbf943Copy full SHA for 2fbf943
authzed/api/v1/error_reason.proto
@@ -413,4 +413,17 @@ enum ErrorReason {
413
// }
414
415
ERROR_REASON_TRANSACTION_METADATA_TOO_LARGE = 29;
416
+
417
+ // The request failed because the datastore has not been migrated.
418
+ // This typically indicates that the `spicedb datastore migrate` command
419
+ // has not been run against the backing database.
420
+ //
421
+ // Example of an ErrorInfo:
422
423
+ // {
424
+ // "reason": "ERROR_REASON_DATASTORE_NOT_MIGRATED",
425
+ // "domain": "authzed.com",
426
+ // "metadata": {}
427
+ // }
428
+ ERROR_REASON_DATASTORE_NOT_MIGRATED = 30;
429
}
0 commit comments