When I run rake db:migrate I get this error at the end.
Error in my_thread_global_end(): 1 threads didn't exit
I pinned it down to this code which is in 004_create_permissions.rb.
# create admin user
user = User.new
user.login = 'admin'
user.password = 'password'
user.save(false)
If I don't run user.save(false) I don't get the error. I am not sure
why, the user does get saved properly to the database.
Any help would be appreciated.
Thanks,