# File lib/chef/expander/configuration.rb, line 149
        def solr_url=(url)
          if url && url == "http://localhost:8983"
            log.warn {"You seem to have a legacy setting for solr_url: did you mean #{url}/solr ?"}
            url = "#{url}/solr"
          end
          @solr_url = url
        end