You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
log.info("Checking to see if the DB is up-to-date.");
281
281
log.info("Build's DB version is {}", DB_VERSION);
282
282
intversion = this.getDatabaseVersion(handle);
283
+
284
+
// Fast-fail if we try to run Registry v3 against a v2 DB.
285
+
// TODO how to do this for kafkasql??
286
+
if (version < 100) {
287
+
Stringmessage = "[Apicurio Registry 3.x] Detected legacy 2.x database. Automatic upgrade from 2.x to 3.x is not supported. Please see documentation for migration instructions.";
0 commit comments