# File lib/juicer/asset/path_resolver.rb, line 67
      def cycle_hosts
        return nil if @hosts.length == 0

        host = @hosts[@current_host % @hosts.length]
        @current_host += 1

        host
      end