# File lib/flexirecord.rb, line 578
578:       def thread_connection_pool=(pool)
579:         pool_hash = Thread.current[:flexirecord_thread_connection_pools] ||= {}
580:         if pool.nil?
581:           pool_hash.delete(self)
582:         else
583:           pool_hash[self] = pool
584:         end
585:         nil
586:       end