Displaying 1 result from an estimated 1 matches for "my_thread_global_end".
2008 Apr 02
1
Error in my_thread_global_end() when running rake db:migrate
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(fa...