You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
bz2redmine fails with a "NameError: uninitialized constant BugzillaToRedmine::Net" when migrating LDAP users from Bugzilla to Redmine, i.e. settings.rb is configured as follows:
REDMINE_DEFAULT_AUTH_SOURCE_ID is not nil.
REDMINE_LDAP is defined as per your local LDAP settings.
The fix was to edit bz2redmine.rb to require the net-ldap gem, e.g.:
...
require "rubygems"
require "mysql"
require "net/ldap"
...
Could someone please implement this fix?
Thanks!
The text was updated successfully, but these errors were encountered:
bz2redmine fails with a "NameError: uninitialized constant BugzillaToRedmine::Net" when migrating LDAP users from Bugzilla to Redmine, i.e. settings.rb is configured as follows:
The fix was to edit bz2redmine.rb to require the net-ldap gem, e.g.:
...
require "rubygems"
require "mysql"
require "net/ldap"
...
Could someone please implement this fix?
Thanks!
The text was updated successfully, but these errors were encountered: