I had the same problem. And I found out by looking at the GitHub core repo. That we should use :
//close server to release the db-file
await strapi.server.close();
instead:
//close server to release the db-file
await strapi.destroy();
I had the same problem. And I found out by looking at the GitHub core repo. That we should use :
//close server to release the db-file
await strapi.server.close();
instead:
//close server to release the db-file
await strapi.destroy();