I’m seeing a bunch of these errors in my PMS logs. I ran through the KB article on repairing the database. While I didn’t get any errors, the error persists in the logs. Any ideas on how I can fix this? If it matters, the server appears to be functioning normally.
SQLITE3:0x80000001, 17, statement aborts at 57: [select * from metadata_items limit 1] database schema has changed
This is normal during database migrations (which is where your logs have them). When the db schema changes (as the migration often do), the sqlite connection will output this error message on the next query. So on the migrations we actually do a simple query just to flush this.