mbonsack;282520 Wrote: > I get this in my server log running under Ubuntu 7.10 at *shutdown* > time, not startup.
Indeed. It is the same for me. By reading through the source code, I found out that SlimServer is calling the the following methods on shutdown: > > main.stopServer > -> main.cleanup > --> schema.disconnect > ---> storage.dbh > ----> dbi.ensure_connected > -----> dbi._populate_dbh > ------> dbi._connect > -------> bang!! > In other words, when the server stops, it tries to cleanup everything, and in the process it attempts to *connect* to the database, which since it has already been closed, crashes the application. This is obviously a bug. Indeed it is not fatal since the application is closing anyway. But it is still a bug, and it needs to be fixed. -- AndrewFG Regards, AndrewFG ------------------------------------------------------------------------ AndrewFG's Profile: http://forums.slimdevices.com/member.php?userid=15838 View this thread: http://forums.slimdevices.com/showthread.php?t=44892 _______________________________________________ discuss mailing list [email protected] http://lists.slimdevices.com/lists/listinfo/discuss
