Sha256: fa8a7d74643177b4cdef41ccd63a0c48b2743307e0aaa0ddfb2ed6775087da91

Contents?: true

Size: 477 Bytes

Versions: 80

Compression:

Stored size: 477 Bytes

Contents

module Neo4j
  module Migrations
    class CheckPending
      def initialize(app)
        @app = app
        @last_check = 0
      end

      def call(env)
        latest_migration = Neo4j::Migrations::Runner.latest_migration
        mtime = latest_migration ? latest_migration.version.to_i : 0
        if @last_check < mtime
          Neo4j::Migrations.check_for_pending_migrations!
          @last_check = mtime
        end
        @app.call(env)
      end
    end
  end
end

Version data entries

80 entries across 80 versions & 2 rubygems

Version Path
neo4j-8.3.2 lib/neo4j/migrations/check_pending.rb
neo4j-9.0.2 lib/neo4j/migrations/check_pending.rb
neo4j-8.3.1 lib/neo4j/migrations/check_pending.rb
neo4j-9.0.1 lib/neo4j/migrations/check_pending.rb
neo4j-9.0.0 lib/neo4j/migrations/check_pending.rb
neo4j-8.3.0 lib/neo4j/migrations/check_pending.rb
neo4j-8.2.5 lib/neo4j/migrations/check_pending.rb
neo4j-8.2.4 lib/neo4j/migrations/check_pending.rb
neo4j-8.2.3 lib/neo4j/migrations/check_pending.rb
neo4j-8.2.2 lib/neo4j/migrations/check_pending.rb
neo4j-8.2.1 lib/neo4j/migrations/check_pending.rb
neo4j-8.1.5 lib/neo4j/migrations/check_pending.rb
neo4j-8.1.4 lib/neo4j/migrations/check_pending.rb
neo4j-8.1.3 lib/neo4j/migrations/check_pending.rb
neo4j-8.1.2 lib/neo4j/migrations/check_pending.rb
neo4j-8.1.1 lib/neo4j/migrations/check_pending.rb
neo4j-8.1.0 lib/neo4j/migrations/check_pending.rb
neo4j-8.1.0.rc.2 lib/neo4j/migrations/check_pending.rb
neo4j-8.0.18 lib/neo4j/migrations/check_pending.rb
neo4j-8.1.0.rc.1 lib/neo4j/migrations/check_pending.rb