verify!(pg_conn)
private

No documentation available.

# File actioncable/lib/action_cable/subscription_adapter/postgresql.rb, line 69
        def verify!(pg_conn)
          unless pg_conn.is_a?(PG::Connection)
            raise "The Active Record database must be PostgreSQL in order to use the PostgreSQL Action Cable storage adapter"
          end
        end