Defect #14590
closedmigrate_from_trac.rake does not import Trac users, uses too short password
0%
Description
I was testing migrate_from_trac.rake and found that it was not importing the user database from trac.
I substituted ".save" with ".save!" in a few places in the script and found this error:
Validation failed: Password is too short (minimum is 8 characters)
/usr/local/lib/ruby/gems/1.9/gems/activerecord-3.2.13/lib/active_record/validations.rb:56:in `save!'
/usr/local/lib/ruby/gems/1.9/gems/activerecord-3.2.13/lib/active_record/attribute_methods/dirty.rb:33:in `save!'
/usr/local/lib/ruby/gems/1.9/gems/activerecord-3.2.13/lib/active_record/transactions.rb:264:in `block in save!'
/usr/local/lib/ruby/gems/1.9/gems/activerecord-3.2.13/lib/active_record/transactions.rb:313:in `block in with_transaction_returning_status'
/usr/local/lib/ruby/gems/1.9/gems/activerecord-3.2.13/lib/active_record/connection_adapters/abstract/database_statements.rb:192:in `transaction'
/usr/local/lib/ruby/gems/1.9/gems/activerecord-3.2.13/lib/active_record/transactions.rb:208:in `transaction'
/usr/local/lib/ruby/gems/1.9/gems/activerecord-3.2.13/lib/active_record/transactions.rb:311:in `with_transaction_returning_status'
/usr/local/lib/ruby/gems/1.9/gems/activerecord-3.2.13/lib/active_record/transactions.rb:264:in `save!'
/usr/local/www/redmine/lib/tasks/migrate_from_trac.rake:280:in `find_or_create_user'
/usr/local/www/redmine/lib/tasks/migrate_from_trac.rake:435:in `block in migrate'
/usr/local/www/redmine/lib/tasks/migrate_from_trac.rake:428:in `each'
/usr/local/www/redmine/lib/tasks/migrate_from_trac.rake:428:in `migrate'
Changing the default password for created users from 'trac'
to 'tracmigratetoredmine' fixed the problem.
See attached patch.
Related to: #14567
Files
Related issues
Updated by Toshi MARUYAMA over 11 years ago
- Related to Patch #14567: migrate_from_trac.rake does not convert timestamps in Trac database version 23 added
Updated by Etienne Massip over 11 years ago
- Related to Defect #14646: Migrating from Trac, users are not imported added
Updated by Etienne Massip over 11 years ago
- Related to deleted (Defect #14646: Migrating from Trac, users are not imported)
Updated by Etienne Massip over 11 years ago
- Has duplicate Defect #14646: Migrating from Trac, users are not imported added
Updated by Mischa The Evil about 11 years ago
- Related to Defect #14960: migrate_from_mantis.rake does not import Mantis users, uses too short password added
Updated by Jean-Philippe Lang about 11 years ago
- Tracker changed from Patch to Defect
- Subject changed from migrate_from_trac.rake does not import Trac users, uses too short a password to migrate_from_trac.rake does not import Trac users, uses too short password
- Status changed from New to Resolved
- Assignee set to Jean-Philippe Lang
- Target version set to 2.3.4
I've fixed it r12163 using another approach, thanks for pointing this out.
Updated by Jean-Philippe Lang about 11 years ago
- Status changed from Resolved to Closed
- Resolution set to Fixed
Merged.