Git Product home page Git Product logo

Comments (10)

carsonreinke avatar carsonreinke commented on June 11, 2024

Possibly related? SchemaPlus/schema_plus#42

from strongbox.

spikex avatar spikex commented on June 11, 2024

I'm not seeing this with Rails 3.2.3 and Ruby 1.9.2. What versions are you using? What other gems have you added to your app?

Thanks.

from strongbox.

carsonreinke avatar carsonreinke commented on June 11, 2024

Rails 3.2.2 / Ruby 1.9.3.

Looks like I have found the problem, I had an initializer that chained ActiveRecord::ConnectionAdapters::Mysql2Adapter#configure_connection to add some additional functionality. Removing that fixes the problem.

Adding this below will reproduce the issue:

if defined?(ActiveRecord::ConnectionAdapters::Mysql2Adapter)
    class ActiveRecord::ConnectionAdapters::Mysql2Adapter
        def configure_connection_with_test()
            configure_connection_without_test()
        end

        alias_method_chain :configure_connection, :test
    end
end

from strongbox.

spikex avatar spikex commented on June 11, 2024

Hmm, still not able to reproduce this. If you start a clean project with just the above and strongbox, do you get the same error?

from strongbox.

carsonreinke avatar carsonreinke commented on June 11, 2024

So sorry, forgot to add an important piece of information. The file is included in the config.after_initialize block.

Yes, I was able to reproduce with a clean project.

from strongbox.

spikex avatar spikex commented on June 11, 2024

I tried 1.9.2/3.2.2 and still can't reproduce it. Can you throw the minimum project that fails for you in a repo?

from strongbox.

carsonreinke avatar carsonreinke commented on June 11, 2024

Sorry for the delay, here you go: https://github.com/carsonreinke/strongbox-test

from strongbox.

spikex avatar spikex commented on June 11, 2024

config/initializers/mysql_test.rb is getting loaded twice first automatically by rails the initialization and then explicitly by you in config.after_initialize.

Without Strongbox it works because when Rails loads the initialization file ActiveRecord::ConnectionAdapters::Mysql2Adapter isn't defined, but it is when you load the file.

With Strongbox ActiveRecord::ConnectionAdapters::Mysql2Adapter is loaded when Rails first loads the file. This cause two calls to alias_method_chain which creates the loop.

I assume this happens because Strongbox's call to ActiveRecord::Base.send causes Rails lazy loading to pull in that class sooner.

So, it's not a bug in Strongbox, just a question the gem effecting when the class is loaded. Two way to work with that:

  1. Move the initializer code out of the initializers directory so it's only loaded once.
  2. Make sure alias_method_chain can only be called once:
unless method_defined? :configure_connection_with_time_zone
  alias_method_chain :configure_connection, :time_zone
end

from strongbox.

carsonreinke avatar carsonreinke commented on June 11, 2024

Ah, good call. Sorry for the bother.

from strongbox.

spikex avatar spikex commented on June 11, 2024

No worries, it's a pretty subtle issue.

from strongbox.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.